home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 January / EnigmA AMIGA RUN 33 (1999)(G.R. Edizioni)(IT)[!][issue 1999-01].iso / earcd / faq / amiga / networking-faq / part2.z / part2
Text File  |  1999-01-01  |  91KB  |  3,248 lines

  1. Path: senator-bedfellow.mit.edu!faqserv
  2. From: norman@afas.msfc.nasa.gov (Richard Norman)
  3. Newsgroups: comp.sys.amiga.datacomm,comp.sys.amiga.hardware,comp.answers,news.answers
  4. Subject: Amiga Networking Frequently Asked Questions (FAQ) Part 2/2
  5. Supersedes: <amiga/networking-faq/part2_791765763@rtfm.mit.edu>
  6. Followup-To: comp.sys.amiga.datacomm
  7. Date: 24 Dec 1996 12:32:31 GMT
  8. Organization: none
  9. Lines: 3224
  10. Approved: news-answers-request@MIT.EDU
  11. Expires: 6 Feb 1997 12:31:54 GMT
  12. Message-ID: <amiga/networking-faq/part2_851430714@rtfm.mit.edu>
  13. References: <amiga/networking-faq/part1_851430714@rtfm.mit.edu>
  14. Reply-To: norman@afas.msfc.nasa.gov
  15. NNTP-Posting-Host: bloom-picayune.mit.edu
  16. Summary: Answers to both generic and Amiga specific networking questions.
  17.   It covers both hardware and software questions. It should be read by anyone
  18.   that has a network related question before posting it to 
  19.   comp.sys.amiga.datacomm or comp.sys.amiga.hardware  news groups.
  20. X-Last-Updated: 1996/12/24
  21. Originator: faqserv@bloom-picayune.MIT.EDU
  22. Xref: senator-bedfellow.mit.edu comp.sys.amiga.datacomm:46978 comp.sys.amiga.hardware:151413 comp.answers:23276 news.answers:90306
  23.  
  24. Archive-name: amiga/networking-faq/part2
  25. Posting-Frequency: monthly
  26. Version: 2.1
  27.  
  28. Document Amiga Networking FAQ
  29.  
  30.  
  31. =======< start second part >=====
  32.  
  33.  
  34.   AmiTCP   is a shareware product and a demo version is available on Aminet. AmiTCP
  35. can be a bear to install, but now there are install scripts on Aminet, and I've
  36. added a section to try to help demystify the process. AmiTCP will provide full
  37. TCP/IP connectivity.
  38.  
  39.   DNET  may be more useful if you are connecting to a UNIX host, but I have no
  40. direct experience with DNET.
  41.  
  42. IF all you can get is a shell account on the UNIX host, then    TIA    or   MLINK  
  43. will be of interest.
  44.  
  45. Of course there are other options as well such as AmigaNOS.
  46.  
  47.  AM2 
  48. --------------------
  49.  
  50. Is there a way to print from AMosaic using arexx?
  51.  
  52. Thanks to a Quick and Dirty Hack by Mike Meyer there is!
  53.  
  54. Although I tried to type it in correctly,  I cannot guarantee that it will work
  55. since I have no way to test it.
  56.  
  57.  
  58.  / *
  59.  * A QAD hack to print from Mosaic via the Rexx interface
  60.  */
  61.  arg style
  62.  if ~show('Libraries', 'rexxarplib.library') then
  63.  if ~addlib('rexxarplib.library', 0, -30) then do
  64.  say "No rexxarplib, so no posting!"
  65.  exit
  66.  end
  67.  
  68.  options results
  69.  
  70.  select
  71.  when style = "TEXT" then 'get text'
  72.  when style = "FORMATTED" then 'get formatted'
  73.  when style = "POSTSCRIPT" then do
  74.  call request 0, 0, "Postscript doesn't work yet!"
  75.  exit
  76.  end
  77.  
  78.  otherwise call request 0, 0, "Invalid argument" style
  79.  end
  80.  
  81.  if ~open(printer, "prt:", "Write")  then do
  82.  call request 0, 0, "Can't open printer!"
  83.  exit
  84.  end
  85.  
  86.  call writech printer, result
  87.  exit
  88.  
  89.  AM3 
  90. -------------------
  91.  
  92. Having problems with "service looping" with http?
  93.  
  94. There is a version of the AmiTCP 3.0 Beta 2 inetd which is better behaved. It is
  95. available via anonymous FTP at remarque.berkeley.edu  as /pub/mwm/inetd_for_httpd
  96.  
  97.  AM4 
  98. --------------------
  99.  
  100. How do I connect to a news server with AMosaic?
  101.  
  102. You specify the NNTPSERVER environment variable. This can be  done at user-startup
  103. or from a shell.  Use the setenv command:
  104.  
  105.   SETENV NNTPSERVER a.news.server.youre.allowed.on
  106.  
  107.  AM5 
  108. -------------------
  109.  
  110. How do I access docs in AMosaic NoNet mode?
  111.  
  112. The Amosaic NoNet version  can run in stand alone mode ( i.e. NO NETwork). This is
  113. for testing purposes before you get your network connection.  In v1.2 or earlier
  114. you are greeted with an error message instead of a document in this NoNet mode.
  115.  
  116. To see the local html files you must use the Open Local menu item and then choose
  117. volumes.  You must go all the way to the list of volumes because this allows you
  118. to build the file pointer from scratch. Choose the volume where Amosaic is stored
  119. and then work your way  down to the docs/html directory. There should be a file
  120. called index.html. Choose it and it should open. Once you open the index.html file
  121. it has hypertext links to many of the other local html documents. It also has
  122. remote links which obviously won't work in NoNet mode.
  123.  
  124. To make index.html your default or "home page" you can edit the
  125. envarc:mosaic/prefs and set the HomeDocument variable. For example:
  126.  
  127.  HomeDocument file://localhost/SYS:Comms/Mosaic/HTML/index.html
  128.  
  129.  
  130. The change will be active the next time you boot or To make it active copy the
  131. envarc:mosaic/prefs to env:mosaic/prefs.
  132.  
  133.  AM6 
  134. -------------------
  135.  
  136. How do I make AMosaic appear on a custom screen?
  137.  
  138. You can make AMosaic appear on a custom screen by using the MUI Prefs, BUT don't
  139. do it while Amosaic is running!!!
  140.  
  141. If AMosaic is running when you change the MUI prefs to a custom screen, it will
  142. crash your machine! ( At least V1.2 of Amosaic did this, other versions may be
  143. fixed)
  144.  
  145. Simple fix: Run MUI prefs and change the screen, and THEN run AMosaic.
  146.  
  147.  AM7 
  148. --------------------
  149.  
  150. How do I change AMosaic's preferences?
  151.  
  152. In order to change AMosaic's preferences such as which page is the default home
  153. page you can edit one of the files in the envarc:mosaic  directory, or you can get
  154. AMprefs which is available on the AMosaic home page.
  155.  
  156. For more help get the   Amosaic-FAQ  
  157.  
  158.  AM8 
  159. ------------
  160.  
  161. AM8  How to route past FireWalls? (proxies)
  162.  
  163.  
  164. Version 1.3 of AMosaic and higher supports proxies so that you can talk through a
  165. firewall router. To do so you must set some environment variables on the Amiga.
  166. Here is a list that Stefan posted:
  167.  
  168. open a shell window and type:
  169.  
  170.  Setenv HTTP_PROXY   http://proxy.domain.foo.bar/
  171.  
  172.  Setenv ftp_PROXY    http://proxy.domain.foo.bar/
  173.  
  174.  Setenv gopher_PROXY http://proxy.domain.foo.bar/
  175.  
  176.  Setenv wais_PROXY   http://proxy.domain.foo.bar/
  177.  
  178.  
  179. where proxy.domain.foo.bar should be replaced by the domain name of your WWW proxy
  180. gateway.
  181.  
  182. See the AMosaic FAQ for more help hints and up to date info. It is located at
  183. http://www.phone.net/atcpfaq/amosaic.html
  184.  
  185.  AmiTCP(AT) 
  186. --------------------------
  187.  
  188.  
  189. The first two questions were triggered by 3.0b2 which should no longer be used.
  190. Version 4.0 demo of AmiTCP has been officially released to   Aminet  . Although it
  191. is a "demo", it is fully functional. There will be a commercial version of AmiTCP
  192. available with new features.
  193.  
  194. NOTE:  Do not install v4.0 over a non-working version of 3.0b2. Delete all the
  195. 3.0b2 files off the system (i.e. wipe the slate clean).
  196.  
  197.  
  198.  
  199. Questions about AmiTCP
  200.  
  201.    AT01   Telnet in 3.0b2 locks up my shell when I exit. Is this a bug?
  202.  
  203.    AT02   Startnet in 3.0b2 says there is "no such interface"  why?
  204.  
  205.    AT03   My provider assigns SLIP addresses dynamically. Now What?
  206.  
  207.    AT04   Where are the docs? How do I install and use AmitcP?
  208.  
  209.  AT01 
  210. --------------------
  211.  
  212. Telnet in 3.0b2 locks up my shell when I exit. Is this a bug?
  213.  
  214. Yes, and is quite typical of BETA software. Remember beta software is still under
  215. construction and has not been extensively tested. Bug reports and patches can be
  216. found on kampi.hut.fi
  217.  
  218. Amitcp 3.0b2 telnet when used with AmigaDOS 3.0 or 3.1 uncovered a  bug in the
  219. console software. 
  220.  
  221. Solution is to either 
  222.  
  223. A) use the telnet from 2.3 of AmiTCP or 
  224.  
  225. B) use a console handler like KingCON which is available on   Aminet  
  226.  
  227. C) get a "fixed" version of telnet from kampi.hut.fi
  228.  
  229.  AT02 
  230. --------------------
  231.  
  232. Startnet in 3.0b2 says there is "no such interface"  why?
  233.  
  234. Because you failed to read the NOTE to BETA testers. This is BETA software; so you
  235. ARE a Beta tester. BETA software is still under construction and therefore so are
  236. the manuals and the install script.
  237.  
  238. There are some postscript manuals available for AmiTCP 2.x   The 3.0 stuff hasn't
  239. been added to the postscript manuals yet, so the postscript docs aren't in the 3.0
  240. archive, but they are available online at kampi.hut.fi and other places.
  241.  
  242. To fix the "no such interface" problem you must edit two files:
  243. amitcp:db/interfaces and amitcp:bin/startnet.
  244.  
  245. In amitcp:bin/startnet you must change the ifconfig commands so that instead of
  246. file name/interface number
  247.  
  248.   devs:network/a2065.device/0
  249.  
  250. you have 
  251.  
  252.   alias0   
  253.  
  254. where alias is defined by you in the interfaces file.
  255.  
  256. Some predefined aliases are already in the interfaces file. In fact the
  257. a2065.device is defined as ether.  Therefore you could have changed  the above to
  258. ether0 in startnet and not had to change the interface file.
  259.  
  260. Also, you must change the lo/0 to lo0 in the startnet file because the slash
  261. between the name and the unit number has been dropped and  will generate an error
  262. if you include it.
  263.  
  264.  AT03 
  265. --------------------
  266.  
  267. My provider assigns SLIP addresses dynamically. Now What?
  268.  
  269. Now you have an excuse to learn arexx or shell scripts.  ;-)
  270.  
  271. Actually some have already been written and posted.  Here is one way to do it.
  272. (NOTE: I HAVE NO WAY TO TEST THIS  PROGRAM SO USE IT AT YOUR OWN RISK ) In fact,
  273. it will NOT work as is. You MUST modify it for your system.
  274.  
  275.  /*REXX*/
  276.  /* go slip! a program to create slip scripts with dynamic address */
  277.  /* usage   rx goslip.rexx <dynamic ip address> */
  278.  
  279.  option results
  280.  
  281.  trace off
  282.  
  283.  If = '0a'x
  284.  address REQUESTSTRING 'rtitle="GoSlip" text="Please enter your IP 
  285.  address." '
  286.  direccion = result
  287.  /* changed from 19200 */
  288.  outdriver = 'baudbandit.device 0 57600 ' || direccion ' CD 7WIRE'
  289.  say outdriver
  290.  foo = open('outfile','ENV:sana2/rhslip0.config','Write')
  291.  foo = writeln('outfile',outdriver)
  292.  call close 'outfile'
  293.  address REQUESTSTRING 'rtitle="GoSlip" text="Please enter your 
  294.  host name.(slip#, w/ out amiga.com)" '
  295.  trob = result
  296.  gene = 'HOST 128.200.142.228 ' || trob || lf || 'DOMAIN amiga.com' || lf
  297.  
  298.  ||'NAMESERVER 128.200.192.202' || lf || 
  299.  'NAMESERVER128.200.1.201'
  300.  foo = open('outfile','amitcp:db/netdb-myhost','Write')
  301.  foo = writeln('outfile',gene)
  302.  call close 'outfile'
  303.  
  304.  address command
  305.  'run >NIL: AmiTCP:AmiTCP'
  306.  WaitForPort AMITCP
  307.  'AmiTCP:bin/ifconfig lo0 localhost'
  308.  'AmiTCP:bin/ifconfig slip0' direccion '128.200.1.201'
  309.  'AmiTCP:bin/route add' direccion 'localhost'
  310.  'AmiTCP:bin/route add default 128.200.1.201'
  311.  'Assign TCP: Exists > NIL:'
  312.  /* 'if warn' */
  313.  'Mount TCP: from AmiTCP:devs/inet-mountlist'
  314.  /* 'endif' */
  315.  'run >NIL: amitcp:bin/inetd'
  316.  /*----------end of script ---------------*/
  317.  
  318.  AT04 
  319. -------------------------
  320.  
  321. Where are the AmiTCP Docs? How do I install and use AmiTCP?
  322.  
  323. The quality and lack of docs is a weakness in the demo version, but hey it is
  324. free. There are docs included with the registered version.
  325.  
  326. The most important doc is "Howtoinstall". It is in the Amitcp: drawer. PRINT IT,
  327. and MEMORIZE IT ;-} Seriously though, do read it and gather the necessary info.
  328.  
  329. If your network provider is using SLIP, then you have all software you need to get
  330. AmiTCP up and running. If your provider uses PPP, then you will need to get a copy
  331. of PPP.device which is shareware and is available on Aminet.
  332.  
  333. Also there are some docs in the amitcp:doc and amitcp:help drawers. There isn't
  334. any real organization to them, but look at them anyway. Some of the terms are
  335. described in the generic section of this FAQ, and it is good background if you
  336. know little or nothing about networks.
  337.  
  338. To get started you do NOT need a dialing script. Just use a standard modem program
  339. such as jrcomm, Termite, term, handshake, etc. A dialing script is a form of
  340. automation. It assumes you've got things working and merely want to automate the
  341. process. So wait until you get AmiTCP to work before attempting to set up a
  342. dialing script.
  343.  
  344. Even if you have dynamic addresses from your provider (i.e. the address for your
  345. machine changes each time you log in) you still do NOT have to have an automated
  346. dialing script for testing AmiTCP. Save that for later.
  347.  
  348. So here is how installation goes in a nutshell:
  349.  
  350.   * print and read the amitcp:HowToInstall document
  351.   * gather the info about your connection
  352.   * install AmiTCP using the installer script
  353.  
  354. Now that AmiTCP is installed here is how to test and use it:
  355.  
  356.  ----------<!! IMPORTANT STEP Follows !!>-------------------
  357.  
  358. *Setup your terminal program to use the same baud rate as AmiTCP. If the baud rate
  359. is different AmiTCP will NOT work!  This is an easy step to overlook so watch
  360. out.
  361.  
  362.    Hint: You can change the baud rate AmiTCP uses by editing the
  363.          amitcp:bin/startnet script.
  364.  
  365.  -----------------------------------------------------------
  366.  
  367. *start your terminal program such as term, ncomm, or Termite or you can use a
  368. dialing script. Some of the dialing scripts require programming others have user
  369. interfaces. Go with what is easiest for you. I say for testing purposes that a
  370. term program is the easiest.
  371.  
  372. *Setup your terminal program's modem predial string to be ATZAT&D0/r (this will
  373. reset the modem and force it to ignore DTR) If your terminal program does not use
  374. a predial string, then simply enter the command AT&D0 so that the modem will
  375. ignore DTR. 
  376.  
  377. *Use your terminal program to make the connection to your provider
  378.  
  379. *Manually log in and take note of the prompts and messages. When you write the
  380. automated dialing script it will use these prompts as cues.
  381.  
  382.  
  383. *Some providers will automatically start SLIP others require you to issue a
  384. command. You'll have to follow their instructions here.
  385.  
  386. *if you have a dynamic address the host should provide it to you at this point.
  387. Since we are doing things manually, you will need to write the address down for
  388. use in a later step.
  389.  
  390. *Once SLIP mode is entered, QUIT the term program. (this is where ignore DTR is
  391. critical. You don't want the modem to hang up because we are going to turn the
  392. serial port over to AmiTCP next).
  393.  
  394. *In a shell window type "startnet" for static addresses or "startnet
  395. your.dynamic.address" if you have a dynamic address (hint: use the one you wrote
  396. down in the previous step)
  397.  
  398. *if everything goes right you should get a banner which makes you click on OK
  399. after a period of a few seconds. Then you should be returned to the shell prompt.
  400. Do NOT close the shell. Shrink it and move it out of the way. AmiTCP is now
  401. running. Having fun yet?
  402.  
  403. Not very exciting Huh? Well AmiTCP doesn't do anything for you directly. You must
  404. run an application which uses AmiTCP in order to accomplish anything. The great
  405. thing about AmiTCP and your multitasking Amiga is that you can run a bunch of
  406. these applications at the same time over one modem connection all talking to
  407. _different_ hosts if you wish. Now it is beginning to get interesting, huh?
  408.  
  409. So what are these applications? and how can you tell if AmiTCP is working?
  410. Patience, we are almost there. Remember those amitcp:doc files I asked you to look
  411. at? These describe some of the applications. Among them is a tool called PING
  412. which allows you to test your connection. Try it against your dial up host. Should
  413. work pretty fast, and instantly verifies your connection and setup.  Now try it
  414. against a remote host such as www.microsoft.com. If it works, this verifies your
  415. name server lookup is functioning as well as proves you are on the internet. If it
  416. doesn't, don't panic. Check for typos in your config files. Things like a
  417. transposed number in the default gateway address would cause the network to be
  418. invisible. Also, check that baud rate!
  419.  
  420. If ping works you can move on to more fun things like ncftp for file transfers or
  421. telnet for terminal access to your shell account (gotta check that mail).
  422.  
  423. If all this is working for you, It is time to dive into automating that dial up
  424. process. Then it is on to Amosaic (provided you have WB3.x and MUI), news readers,
  425. mail, etc., etc.
  426.  
  427. See, now that wasn't so bad was it. ;-}
  428.  
  429.  Software-bycat 
  430. ------------
  431.  
  432.  
  433. Software by Category (some items include both hardware and software) (some items
  434. are discontinued but listed for those buying used stuff)
  435.  
  436.  -----------
  437.  
  438.  Protocols:
  439.  
  440.   Appletalk
  441.  
  442.     AMAX
  443.     EMPlant
  444.     DoubleTalk
  445.  
  446.   Decnet
  447.  
  448.       DECnet  
  449.  
  450.   TCP-IP
  451.  
  452.       AmigaNOS  
  453.       AmiTCP  
  454.       AS225  
  455.       INet 225  
  456.       Miami  
  457.       TermiteTCP  
  458.  
  459.   Novell
  460.  
  461.       Oxxi  
  462.  
  463.   Other
  464.  
  465.       AmigaUUCP  
  466.       DNET  
  467.       ENLAN DFS  
  468.       ENVOY  
  469.       Link-It  
  470.       Parnet/Parbench  
  471.       SAMBA  
  472.  
  473.  -------------
  474.  
  475.  Disk Utils:
  476.  
  477.     CrossMac  
  478.     MaxDOS  
  479.  
  480.  
  481.  ------------
  482.  
  483.  
  484.  TCP-IP Utils:
  485.  
  486.     MLINK  
  487.     TELser  
  488.     TorqueWare  
  489.     netser.device  
  490.  
  491.  
  492.  SANA II device drivers:
  493.  
  494.     PPP.device  
  495.     PLIP  
  496.   SanaUtil
  497.   SanaMon
  498.  
  499.  X-windows:
  500.  
  501.     Amiwin  
  502.     X11  
  503.  
  504.  
  505.  Email:
  506.  
  507.   AEmail
  508.   ADmail
  509.     AmigaELM  
  510.     INetUtils  
  511.     MunPack    MIME decoder
  512.     THOR  
  513.     Voodoo  
  514.  
  515.  
  516.  Gopher:
  517.  
  518.   BBGopher (aminet)
  519.   Goppher (aminet)
  520.  
  521.  Web browsers:
  522.  
  523.     Amosaic  
  524.     IBrowse  
  525.     AWeb II  
  526.   Voyager
  527.  
  528.  Web editors:
  529.  
  530.     HTML-Heaven  
  531.     Heddley  
  532.  
  533.  News:
  534.  
  535.     GRn  
  536.     Offline-Orbit  
  537.     THOR  
  538.     TIN  
  539.  
  540.  IRC:
  541.  
  542.   Grapevine
  543.  
  544.  
  545.  --------
  546.  
  547.  Terminal emulation:
  548.  
  549.     Handshake  
  550.     Ncomm  
  551.     Termite  
  552.     Term  
  553.   Terminus (JRComm 102)
  554.     VLT  
  555.  
  556.  ----<end of list>----
  557.  
  558.  hardware-bycat 
  559. ----------
  560.  
  561.  
  562. Hardware Listed by Category:
  563.  
  564.  
  565.  
  566.  Ethernet cards:
  567.  
  568.     A2065  
  569.     A4066  
  570.     Ariadne  
  571.     Hydra  
  572.     ICard  
  573.     LAN Rover  
  574.  
  575.  
  576.  
  577.  ISDN:
  578.  
  579.     ISDN-MASTER  
  580.  
  581.  
  582.  
  583.  Other:
  584.  
  585.     Amigalink  
  586.     GG2-Bus+ Card  
  587.     Quicknet  
  588.  
  589.  Software-Specs 
  590. ================
  591.  
  592. Specifications for Amiga Networking Software
  593.  
  594. This is not an exhaustive list. There are several good  web pages  that list even
  595. more programs. Also, you should check out   Aminet   and   Fred Fish    for the latest
  596. software. The news group   comp.sys.amiga.announce   is quite handy as well.
  597.  
  598.    AmigaELM  -- email
  599.  
  600.    AmigaNOSFlavors  -- protocols
  601.  
  602.    AmiTCP  -- TCP/IP protocol
  603.  
  604.    AmigaUUCP  -- UUCP protocol
  605.  
  606.    AmiWin   -- X-windows
  607.  
  608.    Amosaic  -- Web browser
  609.  
  610.    AS225  -- TCP/IP protocol
  611.  
  612.    CrossMac  -- Mac formated disk support
  613.  
  614.    DECnet  -- Decnet protocol
  615.  
  616.    DNET  -- protocol and file sharing
  617.  
  618.    ENLAN-DFS  -- protocol and resource sharing
  619.  
  620.    Envoy  -- protocol and resource sharing
  621.  
  622.    GPDial  -- dialing script for Amitcp
  623.  
  624.    GRn  -- NEWS reader
  625.  
  626.    HTML-Heaven   -- Web processor
  627.  
  628.    INet 225  -- TCP/IP Protocol
  629.  
  630.    INetUtils  -- support for news and mail
  631.  
  632.    Link It   -- Amiga-PC file sharing
  633.  
  634.    MaxDOS  -- Mac formated disk support
  635.  
  636.    Miami  -- TCPIP for modem users
  637.  
  638.    Mlink  -- TCPIP for Shell users
  639.  
  640.    MunPack  -- MIME and uuen/decode
  641.  
  642.    NCOMM  -- terminal emulation
  643.  
  644.    netser.device  -- remote serial port access
  645.  
  646.    Offline-Orbit  -- NEWS/BBS reader
  647.  
  648.    Parnet  -- protocol and file sharing
  649.  
  650.    Plip   -- Parallel port device driver for TCP/IP
  651.  
  652.    PPP.device  -- device driver for PPP-TCP/IP
  653.  
  654.    SAMBA  -- protocol and file sharing (UNIX/PC/AMIGA)
  655.  
  656.    telser  -- allows modem terminals to be used with telnet
  657.  
  658.    Termite  -- terminal emulation
  659.  
  660.    TermiteTCP  -- TCPIP for modem users
  661.  
  662.    THOR  -- NEWS/BBS reader
  663.  
  664.    TIN  -- NEWS reader
  665.  
  666.    TorqueWare (TM)  -- Distributed Processing
  667.  
  668.    VLT  -- terminal emulation
  669.  
  670.    Voodoo  -- email with GUI and MIME
  671.  
  672.    X11R4  -- X-windows
  673.  
  674.  AmigaELM 
  675. ---------------------------
  676.  
  677. AmigaELM by Andreas M. Kirchwitz.
  678.  
  679. elm-fan@zikzak.in-berlin.de
  680.  
  681. AmigaELM is available on   AmiNET   in the /comm/mail directory.
  682.  
  683. AmigaELM is a shareware electronic mail utility for   UUCP   or TCP/IP that allows
  684. you to read and post mail through a remote unix mail box. It can also be setup to
  685. run without UUCP or IP on the Amiga. 
  686.  
  687. AmigaELM 8 (8.20) was just announced in   c.s.a.announce    Announcements are
  688. archived on Aminet so I won't repeat the text here.
  689.  
  690. It works with MetaMail which is also on Aminet. MetaMail handles a lot  of
  691. different   MIME   message types.
  692.  
  693. You should also pick up a copy of   INetUtils   from   Aminet .  It has  a   SMTP  
  694.   client which is suppose to work with AmigaELM.
  695.  
  696.  AmigaNOSFlavors 
  697. ------------------------------------
  698.  
  699. AmigaNOS and AmigaNOSGW are Amiga ports of the PD TCP/IP  package for MS-DOS
  700. called "ka9q". Note that there are MANY  versions of "ka9q" which tends to make
  701. them somewhat unstable,  since they have so many variations.
  702.  
  703. AmigaNOS is a program that will allow one to participate in the Internet (or any
  704. TCP/ IP network for that matter) via one of two dial-up TCP/IP protocols: SLIP or
  705. PPP. It also works with HAM radio equipment.
  706.  
  707. Both programs are a single, integrated "package" of the required  TCP/IP protocols
  708. (e.g.; TCP, IP, UDP, etc.) and some TCP/IP applications/commands (e.g.; Finger,
  709. Telnet, Ping, SMTP). Though the required file structure may seem daunting at
  710. first, it is actually simpler to set up than is AmiTCP.
  711.  
  712. Both AmigaNOS and AmigaNOSGW are very close in capability and  can be considered
  713. equal, in general, for TCP/IP.   The main  differences between the two versions is
  714. that Graham Walter's version,  AmigaNOSGW, comes with an external Gopher client
  715. program and  has an ARexx port.
  716.  
  717.  
  718.  AmigaNOS is by John Heaton  available by FTP from 130.88.200.4
  719.  
  720.  
  721.  AmigaNOSGW is by Graham Walter available by FTP from newgate.demon.co.uk
  722.  
  723.  AmiTCP 
  724. ---------------------
  725.  
  726. AmiTCP by   NSDi  
  727.  
  728. Versions 2 to 3.0b2 of AmiTCP are GNU-ware  versions of   TCP-IP   for the Amiga. It
  729. will work with SLIP or ethernet cards. For more details see the   AmiTCP FAQ  
  730.  
  731. Version 4.0 is now commercial. A demo version is available on    Aminet  . The
  732. commercial version is available from the original authors  the Network Solutions
  733. Development Inc. (  NSDi  ).  For ordering  information send an email message to
  734. info@nsdi.fi which contains the  text "SEND AMITCP ORDER" in the body of the
  735. message.
  736.  
  737.  
  738. They also have a Web page
  739.  
  740.   http://www.nsdi.fi
  741.  
  742. AmiTCP can be a bear to install, so read the   Amitcp Install   question, and
  743. Especially the   AmiTCP FAQ   written by Mike Meyer  and Neil McRae. Also you  can
  744. find some install utilities on Aminet such as iiNST.
  745.  
  746.  AmigaUUCP 
  747. --------------------------
  748.  
  749. AmigaUUCP is a port of Unix to Unix CoPy    UUCP   to the Amiga. It allows an Amiga
  750. to participate in the USEnet network. It has it's own   UUCP FAQ  
  751.  
  752. There are actually several versions of UUCP for the Amiga. I've lumped it all here
  753. to make it easier on me. As I sort it out I may divide it into more informative
  754. nodes.
  755.  
  756. Parts of UUPC (a version of UUCP by John Gilmore) were ported to  the Amiga by
  757. William P. Loftus in 1986. After developing a system that  worked for him, it was
  758. taken over by Matthew Dillon, who (along with a  cast of dozens) developed it into
  759. a full-fledged   UUCP   package. Matt maintained AmigaUUCP (often called DUUCP) from
  760. 1988 until 1992.
  761.  
  762. In 1992, Matt had the press of other obligations; and after the release of
  763. AmigaUUCP v1.16, turned the buglists over to Michael B. Smith.  Michael is in the
  764. process of releasing AmigaUUCP v1.17. v1.17beta  has been available freely for
  765. some months (currently at update #4).
  766.  
  767. After Matt quit working on UUCP, Kai 'wusel' Siering also started on a version of
  768. UUCP based on AmigaUUCP v1.15. It has most of  the v1.16 enhancements as well as
  769. other features.
  770.  
  771.  AmiWin 
  772. -------
  773.  
  774. AmiWin
  775.  
  776.  
  777. A shareware   Xwindows   server for Amiga by Holger Kruse.
  778.  
  779. AmiWin is available on   Aminet .
  780.  
  781. Although I haven't used it myself, several kind folks on the net have provided
  782. some input.
  783.  
  784. AmiWin works with both local and remote xclients.
  785.  
  786. Most notable among the remote clients supported is NetScape. Since X-windows is
  787. slow, a 14.4k line is pretty much unusable for running a remote graphics intensive
  788. client such as NetScape.
  789.  
  790.  
  791. Most notable among the local clients supported is Chimera which is another web
  792. browser. Chimera supports forms and inlined-images, but probably doesn't support
  793. all of the Netscape-isms.
  794.  
  795. Chimera can be started from inside AmiWin by adding Chimera to the menu by
  796. modifying the X11:lib/x11/twm/system.twmrc file. Add something like:
  797.  
  798.   menu "LocalClients"
  799.   {
  800.     "Chimera"  f.exec "Chimera.script"
  801.     "XV"       f.exec "XV.script"
  802.     "XClock"   f.exec "run >NIL: XClock"
  803.   }
  804.  
  805. Where Chimera.script is a small script that sets up proper task priority, and
  806. stack size for Chimera before running it.
  807.  
  808. For running local clients such as Chimera you should use the ppipc transport and
  809. open -display "local:0"
  810.  
  811.  Amosaic 
  812. --------------------
  813.  
  814.  
  815. Amosaic is a freeware version for the Amiga  of NCSA's Mosaic. A hypertext based
  816. multimedia interface for accessing the Internet.
  817.  
  818. AMosaic allows you to browse and retrieve files using a point and click interface.
  819. With a single mouse click you can retrieve and view a text file, a picture, or an
  820. MPEG movie. Or you can download the most  recent version of your favorite program
  821. from one of the archive sites. Use one of the many search utilities, and ride the
  822. wave of pointers to sites all around the globe! They don't call it the World Wide
  823. Web (WWW) for nothing ;-)
  824.  
  825. Amosaic is available via FTP from max.physics.sunysb.edu or via Mosaic from the
  826. Amiga home page by Witbrock. Amosaic is also available on   Aminet   in the
  827. /comm/net directory.
  828.  
  829. It requires MUI,    AmiTCP   or   AS225r2    TCP-IP software, and  some  sort of
  830. internet connection to access remote information.  Also due to datatypes it
  831. currently requires AmigaDos 3.0  
  832.  
  833. See the product specific section   AMosaic(AM)   for more hints!
  834.  
  835.  AS225 
  836. ---------------------
  837.  
  838. AS225 by      Commodore Business Machines  
  839.  
  840. CBM only released version one which is known as AS225r1. It is listed here for
  841. historical purposes.
  842.  
  843. AS225r2 is and will be released by third party developers.
  844.  
  845.  
  846. AS225r1 Compatibility:  NFS - TCP/IP software for the Amiga is compatible with all
  847. models of the Amiga.  Allows connection to Internet, DDN  and other networks
  848. supporting TCP/IP and UDP/IP protocols. Works with the A2065 and Ameristar
  849. Ethernet Adapters.
  850.  
  851. AS225r1 Network Functions: rlogin  (client only), rloginVT (client only VT100
  852. terminal emulation), rsh (client and server, but no interactive shells),  NFS
  853. client, telnet (client only), ftp (client and server), finger (client  only),
  854. ping, arp, netstat, rcp (client and server), route, showmount  
  855.  
  856.   AS225r2  
  857.  
  858.  AS225r2 
  859. -----------------------
  860.  
  861. AS225r2   release 2 of AS225  TCP/IP protocol
  862.  
  863. It is under active development again by third parties. Stay tuned for more details
  864. as they become available.
  865.  
  866.  
  867.  
  868.  CPR  has released a version of AS225r2.
  869.  
  870.  InterWorks  has released   INet 225   which is different than the  CPR version, and
  871. includes commercial versions of GRn, INETUtils, and GMail among other things.
  872.  
  873.  Aweb 
  874. _____
  875.  
  876.  
  877. AWEB-II  by Yvon Rozijn and is available from   AmiTrix  
  878.  
  879.  
  880. An Amiga Web Browser for surfing the World Wide Web.
  881.  
  882. Has support for HTML version 2.0 and 3.2 including tables.
  883.  
  884.  
  885. Unlike most of the other web browsers, AWEB II does NOT require MUI.
  886.  
  887.  CrossMac 
  888. ------------
  889.  
  890. CrossMac by   Consultron  
  891.  
  892.  
  893. CrossDOS which comes with AmigaDos has been improved and a new version is
  894. available.
  895.  
  896. CrossMac is a new product which does for Mac formatted disks what CrossDOS does
  897. for MSDOS disks.
  898.  
  899.  
  900. CrossFS is both products for one price.
  901.  
  902.  DECnet 
  903. -------------------
  904.  
  905. TSSnet DECnet by   Thunder Ridge, Inc.  
  906.  
  907. Now your Amiga can become a Phase IV end node in a DECnet  network! Communicates
  908. over the Amiga serial port as well as  Ethernet.  Fully SANA II compliant so other
  909. protocols which support  SANA II such as TCP/IP can run concurrently on the same
  910. ethernet  card. Both Ethernet and serial connections provide multiple concurrent
  911. Virtual Terminal sessions on any other nodes on the network, using the DECnet
  912. CTERM facility.  VT100 terminal emulation  is provided, or use your favorite VT
  913. compatible Amiga terminal program such as   VLT  .
  914.  
  915.  
  916. Supports X windows, allowing you to run VAX DECWindows  applications, as well as X
  917. clients running on other Amigas or any node  supporting X over DECnet.
  918.  
  919.  
  920. NCP, Network Control Program lets you intuitively control all aspects  of your
  921. node's connection including line speed, buffers, statistics, and security.
  922.  
  923. NetMail allows full mail access to DECnet networks.
  924.  
  925. NFT, Network File Copy enables you to copy, list, print, rename,  delete, type and
  926. submit command files across the network.
  927.  
  928. Task to Task Communications provides an AmigaDOS device for  communicating with
  929. tasks on other DECnet nodes.  Full documentation  is included for this easy-to-use
  930. programmer's interface to TSSnet.
  931.  
  932. FAL, File Access Listener allows other DECnet nodes to access your  Amiga
  933. directly. Full username/password protection is available.
  934.  
  935.  DNET 
  936. -----------
  937.  
  938. DNET is a networking protocol which allows Amigas to talk to Amigas or a unix box
  939. over a serial line. There is a version for each case, and they are available on
  940. Aminet.
  941.  
  942. I have never used it, but folks tell me it works. If one end is connected to the
  943. Internet, then DNET allows you to access the Internet via the remote machines
  944. TCP/IP protocol. This is somewhat similar to   TIA  , but different. Like TIA or
  945.  SLIP   SLIP   it supports multiple tasks concurrently over the serial line.
  946.  
  947.  ENLAN-DFS 
  948. -----------------------------
  949.  
  950. ENLAN-DFS by   Interworks  
  951.  
  952. Amiga peer to peer networking software
  953.  and DFS ( Distributed File System )
  954.    Description:
  955.  
  956. The Distributed File System (DFS) allows complete sharing of devices, directories,
  957. and peripherals (including printers). With this setup centralized backup is a
  958. possibility. Network resources appear on the client as local devices. ENLAN-DFS
  959. supports the Workbench interface, icons and all and is SANA II compatible.
  960.  
  961. Security features:
  962.  
  963. Provides password and read only support for public resources.
  964.  
  965. Provides node level username and password if desired.
  966.  
  967. Requirements:
  968.  
  969. AmigaDOS 2.04 or higher. Approximately 456KB of disk space.
  970.  
  971. compatible with   A600, 1200, 2000, 3000, or 4000
  972.  
  973. compatible with the following ethernet cards:
  974.  
  975.     ICard  ,   Lan Rover  ,   A2065  ,  A4066   A4066  , or   Hydra  
  976.  
  977. Requires 1.5 MB of ram minimum, more for serving multiple systems
  978.  
  979. MSRP  for 5 node license  $349
  980.  
  981.  Envoy 
  982. -------------------
  983.  
  984. Amiga Envoy 2.0 Available from   IAM   Intangible Assets Manufacturing
  985.  
  986.  
  987. Tightly integrated peer-to-peer networking software for the Amiga from the
  988. workbench of IAM software engineers Heinz Wrobel and Dale L. Larson.
  989.  
  990. Ver 2.0 features:
  991.  
  992. Support of AmigaOS 2.04 DOS packet types (including notification and record
  993. locking), support for removable media, enhanced reliability and robust recovery,
  994. localization, AmigaGuide documentation, and more.
  995.  
  996.  
  997. History:
  998.  
  999. Amiga Envoy is the Amiga peer-to-peer networking software  developed by
  1000. Commodore's Amiga Networking Group. Included  applications enable connected Amiga
  1001. computers to share hard disks,  CD-ROMs, and printers transparently. Amiga Envoy
  1002. also provides a simple messaging interface (API) for the easy development of
  1003. reliable  network applications.
  1004.  
  1005. To make Amiga Envoy available to end-users immediately, Intangible  Assets
  1006. Manufacturing has licensed Amiga Envoy from Commodore.  IAM has produced a manual
  1007. written by Dale Larson, one of Amiga  Envoy's original designers. The manual eases
  1008. you through the set up  and use of a simple network. Additional documentation will
  1009. be available (at an additional charge). It will explain how to internetwork  with
  1010. Amiga Envoy, how to develop software for it and howto use its  security features.
  1011.  
  1012.  
  1013. Availability:
  1014.  
  1015. The list price of Amiga Envoy 2 user license is US$59.95.
  1016.  
  1017.  
  1018. Requirements:
  1019.  
  1020. Envoy 2.0 Requires Workbench 2.04, Kickstart 2.04, 512k RAM, SANA-II compatible
  1021. networking hardware. 
  1022.  
  1023. Workbench 3.1, 1MB or more of RAM and HD recommended.
  1024.  
  1025.  
  1026.  
  1027. Compatibility:
  1028.  
  1029. Any SANA-II networking hardware may be used with Envoy, including Ameristar A4066,
  1030. AmigaLink, ASDG LanRover, Commodore A2065 or A2060 and SLIP (serial port).
  1031.  
  1032. Additional NON-IP, SANA-II compatible networking protocol stacks  may be run at
  1033. the same time as Amiga Envoy over the same  networking hardware. AS225r2 is the
  1034. version of Commodore's TCP/IP  package which is compatible with Envoy (through
  1035. SANA-II compatibility and close cooperation regarding IP packets).
  1036.  
  1037.  
  1038. DEVELOPERS:
  1039.  
  1040. Applications developers can also contact IAM for information concerning consulting
  1041. and documentation services or licensing Envoy for use in your applications.
  1042.  
  1043.  GPDial 
  1044. ------------
  1045.  
  1046. GPDial  by Adam Wasiak  (ghosty@spuddy.mew.co.uk)
  1047.  
  1048.  
  1049.  Script based dialer with a GUI with a phone book utility.
  1050.  Comes with example scripts and documentation.
  1051.  
  1052. Requires:
  1053.  
  1054. WB v2.04 or higher.  Works with AmiTCP, but may work with others too.
  1055.  
  1056. Available:
  1057.  
  1058. On   Aminet   in the comm/tcp directory.
  1059.  
  1060.  GRn 
  1061. ----------------
  1062.  
  1063. GRn   Gadtools Read news
  1064.  
  1065. GRn  is a news reader program which was originally designed to work  with
  1066. AmigaUUCP V1.08. Now it will work with AmigaUUCP V1.08-1.17,  wUUCP, various ports
  1067. of C News (including wCNews), AmigaNOS via  AREXX scripts, NFS mounted news spools
  1068. and NNTP in at least four  flavors (DNet, serial port, AmiTCP, and AS225r2). GRn
  1069. integrates with   INetUtils  .  Both GRn and INetUtils are available on   Aminet  
  1070.  
  1071.  handshake 
  1072. -------
  1073.  
  1074.  
  1075. Handshake
  1076.  
  1077.  
  1078. A shareware terminal emulator which did a good job of VT emulation. Probably can
  1079. still be found on Aminet.
  1080.  
  1081.  heddley 
  1082. -------
  1083.  
  1084. Heddley by Edd Dumbill
  1085.  
  1086.  
  1087. Shareware AmigaGuide editor which can output as HTML as well.
  1088.  
  1089.  Html-heaven 
  1090. -------------
  1091.  
  1092. HTML-Heaven  by Paul Kolenbrander
  1093.  
  1094.   Email: paul@serena.iaehv.nl
  1095.   postal: Turfveldenstraat 37
  1096.           NL-5632 XH EINDHOVEN
  1097.           The NETHERLANDS
  1098.  
  1099. HTML-Heaven is a suite of four programs for creating and maintaining Web pages.
  1100. Add your favorite supported editor and web browser and you can tango. Adding HTML
  1101. tags is a point click operation and the auto view option allows you to use your
  1102. web browser to view the changes as they are made.
  1103.  
  1104. V1.3 added support for more editors such as Write, Final Writer, and BEd.
  1105.  
  1106. Requires:
  1107.  
  1108. WB 2.04 or higher. 1M ram, a supported editor and web browser.
  1109.  
  1110. Available:
  1111.  
  1112. Crippled version is  On   Aminet   in text/hyper directory or on
  1113. http://www.iaehv.nl/users/paul/index.html
  1114.  
  1115.  INET225 
  1116. --------------
  1117.  
  1118. I-NET 225 by   Interworks  
  1119.  
  1120. Contact   Interworks   for the latest info.
  1121.  
  1122. The TCP/IP protocol is what the global Internet is based upon. Using I-Net 225,
  1123. any Amiga running O/S 2.04 or above can connect to the Internet.
  1124.  
  1125. I-Net 225 is compatible with all properly written programs which workded with
  1126. Commodore's AS225r1 and AS225r2. I-Net 225 conforms to the SANA-II standard, and
  1127. includes a variety of device handlers, several with changes/features/patches not
  1128. otherwise available.
  1129.  
  1130. I-Net 225 includes a full complement of Internet clients, including but not
  1131. limited to: finger, ftp, host, lpr, nfs, nntp, ping, rcp, rlogin, rpcinfo, rsh,
  1132. smtp, telnet, traceroute, whois.
  1133.  
  1134. I-Net 225 includes a full complement of Internet servers, including but not
  1135. limited to: fingerd, ftpd, inetd, lpd, portmapd, rshd, smtpd, syslogd, telnetd,
  1136. timed.
  1137.  
  1138. NFSd is included in the 5-node license, but not the single node. NFSd is also
  1139. available for separate purchase.
  1140.  
  1141.  
  1142. I-Net 225 includes enhanced versions of well known Amiga software:   GRn   (Gadtools
  1143. Read News),   INetUtils  , and GMail.
  1144.  
  1145. There are a variety of other supporting utilities and included in I-Net 225, as
  1146. well as a variety of freely available software designed to work with Comodore's
  1147. AS225r2 which will run with I-Net 225 as well.
  1148.  
  1149. Also of significant note is the inclusion of tn3270.device which allows TCP/IP
  1150. connections from terminal programs, including tn3270 emulation. This can also be
  1151. used for UUCP over TCP/IP.
  1152.  
  1153. Technical support is available by fax, and email. 5-node licenses also include
  1154. telephone tech support.
  1155.  
  1156.  
  1157. Special Requirements:
  1158.  
  1159. WB2.04 or higher
  1160.  
  1161. 2Meg of ram
  1162.  
  1163. network connection
  1164.  
  1165.  
  1166. Price:
  1167.  
  1168.  MSRP $ 80 NFSd (server NFS)
  1169.  MSRP $349 for 5-node license of I-Net 225 includes NFSd, and phone tech support
  1170.  MSRP $150 for 1-node license of I-Net 225 NO NFSd.
  1171.  
  1172. All licenses include tech support by email and fax.
  1173.  
  1174.  INetUtils 
  1175. -----------------------
  1176.  
  1177. INetUtils
  1178.  
  1179.  
  1180. INetUtils is copyrighted, but freely distributable up to version 1.4 The author
  1181. will make future versions commercial which will include a  major update to GRn and
  1182. will include the long awaited GMail.
  1183.  
  1184. The author *strongly* recommends that you read the man pages. Do  NOT blindly
  1185. install V1.4 over an existing installation. You will regret it if you do so
  1186. according to the author. 
  1187.  
  1188. Author:
  1189.  
  1190. ------
  1191.  
  1192.   Michael B. Smith
  1193.  
  1194.    mbs@adastra.cvl.va.us
  1195.  
  1196.    POB 6791
  1197.    Charlottesville, VA 22906
  1198.    USA
  1199.  
  1200.  
  1201. Description:
  1202.  
  1203. -----------
  1204.  
  1205. INetUtils is a series of programs designed to allow an Amiga running AS-225 beta
  1206. 2.0 software (i.e., socket.library capable) or AmiTCP 2.2  (or above) to interact
  1207. and operate as fully functioning members of an IP network, including the global
  1208. InterNet.
  1209.  
  1210.  
  1211. The utility programs consist of:
  1212.  
  1213.         SMTPd : an SMTP daemon
  1214.         SMTPpost : an SMTP posting program
  1215.         SMTPExpand : an SMTP aliases expanding program
  1216.         NNTPpost : an NNTP posting program
  1217.         NNTPXfer : an NNTP article transfer program
  1218.         newgroup : a maintenance program for use with NNTP
  1219.         GetActive : an NNTP active file transfer program
  1220.         AmiPOP : a POP message handler
  1221.         Sabot : A newmail activity program
  1222.  
  1223.  
  1224. The following man pages are included:
  1225.  
  1226.         SMTPd.man
  1227.         SMTPpost.man
  1228.         SMTPExpand.man
  1229.         NNTPpost.man
  1230.         NNTPxfer.man
  1231.         GetActive.man
  1232.  
  1233. and describe the operation of each program.
  1234.  
  1235.  
  1236. To install INetUtils, see the document named INSTALL included in this archive. Do
  1237. NOT blindly install V1.4 over an existing installation!
  1238.  
  1239. For basic help in getting SMTPd running, the following heavily  commented script
  1240. is also included:
  1241.  
  1242.         StartSMTPd
  1243.  
  1244. AmiPOP and Sabot were developed by Scott Ellis  (sellis@ucssun1.sdsu.edu) and all
  1245. communication regarding them  should be directed to him. Separate documentation
  1246. regarding them is  included in the AmiPOP and Sabot archives.
  1247.  
  1248. To properly utilize the NNTP capability requires an NNTP aware  newsreader and a
  1249. mailreader. The 'G' package is presented to meet  this need. 
  1250.  
  1251.   GRn   is Gadtools Read News, which can properly read and post with articles via
  1252. NNTP directly or read with the local directory setup by NNTPXfer, and post
  1253. directly using NNTPpost. Documentation is  available in AmigaGuide format
  1254. (GRn.guide). GRn is currently at  version 2.1. A commercial version (3.0) is also
  1255. available.
  1256.  
  1257.  
  1258. GRn2.1a is now available. The "a" version supports AmiTCP 4.0+.
  1259.  
  1260. GMail, Gadtools Mail, is available as a commercial product.
  1261.  
  1262. According to Mike, AmigaElm and the DMail from AmigaUUCP are quite satisfactory
  1263. for reading mail.
  1264.  
  1265.  
  1266. Requirements:
  1267.  
  1268. ------------
  1269.  
  1270. AmigaDos 2.0 or higher
  1271.  
  1272. INetUtils comes in two flavors: one for   AS225r2   and one for
  1273.  AmiTCP  AmiTCP   AmiTCP   version 2.2 or above. You must have one or the other of
  1274. these protocols, and you must get the correct corresponding archive.
  1275.  
  1276.  
  1277. Availability:
  1278.  
  1279. ------------
  1280.  
  1281. INetUtils V1.4 is available on   AMINET  
  1282.  
  1283.   Dir Name:  /pub/aminet/comm/net
  1284.  File Name:
  1285.              IU-14-as225.lha
  1286.              IU-14-amitcp.lha
  1287.  
  1288. Version 1.4 of INetUtils is freeware. Donations are welcome. A  commercial
  1289. version, with enhanced feature content, is also available.
  1290.  
  1291. Distributability:
  1292.  
  1293. ----------------
  1294.  
  1295. INetUtils is Copyright 1992 - 1994, by Michael B. Smith. All Rights Reserved.
  1296.  
  1297. INetUtils 1.4 is freely distributable as long as no modifications are made to the
  1298. archives or their contents.
  1299.  
  1300.  linkit 
  1301. -----------------
  1302.  
  1303. Link It!  by   Legendary Design Technologies, Inc.  
  1304.  
  1305.  
  1306. Connects your Amiga to your PC, your Amiga to Amiga, or PC to PC.
  1307.  
  1308. Features:
  1309.  
  1310.     Serial or Parallel transfer - 6 foot parallel cable included
  1311.  
  1312.     Perform file conversions as you copy! Examine selecting IFF files
  1313.     on the Amiga and having them arrive in PCX format on the PC!
  1314.  
  1315.     Easy, one-terminal operation
  1316.  
  1317.     Extensive ARexx interface allows you to pre-program repetitive
  1318.     copies or unusual circumstances
  1319.  
  1320.     Amiga support for the ioExtender and Multiface cards.
  1321.  
  1322.     Supports long filenames under Windows 95.
  1323.  
  1324.     Works with Windows 3.1/3.11, Windows 95, & Windows NT
  1325.  
  1326.     Conversion and display programs are completely external and therefore
  1327.     completely upgradeable as new formats become available
  1328.  
  1329. System requirements:
  1330.  
  1331.     Amiga: 512k, Kickstart 1.3, 2.x, 3.x
  1332.     PC: Windows, 2MB RAM
  1333.  
  1334.     Retail Price: $59.95 U.S.
  1335.  
  1336.  MaxDOS 
  1337. -----
  1338.  
  1339. MaxDOS by   Media4 Productions  
  1340.  
  1341. MaxDOS allows an Amiga to read and write to Mac formatted disks. Floppies,
  1342. removable media, and hard drives are all supported.
  1343.  
  1344.  
  1345. When going between Mac and Amiga you are no longer enslaved to the MSDOS 8.3 file
  1346. names.
  1347.  
  1348.  miami 
  1349. --------
  1350.  
  1351. Miami by Holger Kruse (author of ppp.device)
  1352.  
  1353.  
  1354.  
  1355. A TCP-IP stack designed specifically for modem use with minimum setup to quickly
  1356. connect you to the internet through your internet service provider.  Uses MUI to
  1357. allow a graphical setup and user interface.
  1358.  
  1359.  Mlink 
  1360. ---------
  1361.  
  1362. Mlink
  1363.  
  1364. Shell account users can also access the internet using Mlink which is available on
  1365.   Aminet  .
  1366.  
  1367. It is like TIA in that it is a one way glass. You can see out, but no one can see
  1368. in. This is because your machine's IP address is not being used by Mlink. Instead
  1369. Mlink uses your provider's host's IP address, and then relays the results to your
  1370. Amiga.
  1371.  
  1372. You can ftp, telnet, or Mosaic out, but no one can ftp, telnet, or Mosaic to your
  1373. Amiga because you do not have an address.
  1374.  
  1375. Although your service provider misses out on the extra revenue of selling you a
  1376. SLIP or PPP account, they don't have to provide you with an IP address. You will
  1377. need to check with your provider to see if they allow you to use MLink or TIA
  1378. under your shell account.
  1379.  
  1380.  MunPack 
  1381. ---------
  1382.  
  1383. MunPack
  1384.  
  1385. !!!!!! News Flash !!!!!!1
  1386.  
  1387. New Section. Enjoy.
  1388.  
  1389. !!!!!!!!!!!!!!!!!!!!
  1390.  
  1391. A utility for uuencoding binary files into the   MIME   standard for attachment to
  1392. email messages.
  1393.  
  1394. It also decodes   MIME   messages as well as ordinary uuencoded files.
  1395.  
  1396. An Amiga version is available from Carnegie Mellon Univ CMU.
  1397.  
  1398. ftp.andrew.cmu.edu in the pub/mpack directory.
  1399.  
  1400.  NCOMM 
  1401. ------------
  1402.  
  1403. NCOMM by Torkel Lodberg
  1404.  
  1405.  email: torkel@scala.adsp.sub.org
  1406.  postal: Pilotveien 10
  1407.          N-0384 Oslo 3
  1408.          Norway
  1409.  
  1410.  
  1411. Terminal emulation software. Shareware US$40
  1412.  
  1413. Available on   Aminet   in comm/term.
  1414.  
  1415. Any Amiga, WB1.3+, 1M Ram.
  1416.  
  1417.  netser.device 
  1418. ----------------------------
  1419.  
  1420. netser.device a shareware package for AmiTCP
  1421.  
  1422. You can find it on Aminet CD # 6.
  1423.  
  1424.  
  1425. netser is a virtual device driver for accessing remote serial ports as if they
  1426. were local.   Currently,  it  only supports TCP/IP with the AmiTCP package. netser
  1427. emulates low-level  serial  device  commands over the network.  As a result, your
  1428. telecommunication (or "comm") program does not know, nor does it care, where your
  1429. serial port is really located.
  1430.  
  1431. Suppose  you  are  running  a  two  machine  network at home through a parallel
  1432. port or Ethernet card.  Wouldn't it be nice if one machine could access  the other
  1433. machine's serial port?  You can conveniently call out to a BBS on any of the
  1434. machines. You may even run a two line BBS without buying a multi-serial card! And
  1435. if you want to run a big BBS, but you don't have enough expansion slots to
  1436. populate with serial cards. What  you can do is get another (slower) machine and
  1437. connect the two together with Ethernet. netser will allow the BBS machine to use
  1438. the other machine's ports.
  1439.  
  1440. With  netser  and  internet, you may run your favorite comm program on your
  1441. friend's serial  port,  which may be half way across the world. This will save you
  1442. long distance charges.
  1443.  
  1444. Now  that  Amiga  LAN's  exist, it would be convenient to dedicate one machine on
  1445. the LAN to hold modems that may be accessible to any other machine on the LAN.
  1446. (This is commonly known as a modem pool.) It is a common thing on Unix LAN's.
  1447. Because most modems nowadays come with FAX capabilities , you can now fax from
  1448. anywhere!
  1449.  
  1450. The fact is, whatever you  do with the serial ports on your local machine, you can
  1451. now do it with remote serial ports.
  1452.  
  1453.  
  1454. For 2 devices $25,  4 devices $35, and unlimited $50
  1455.  
  1456. author is Sam Yee    samy@sfu.ca
  1457.  
  1458. Works with any amiga. Only requires 50k of Ram. Requires WB 2.04+, and AmiTCP 3.0+
  1459.  
  1460.  Offline-Orbit 
  1461. ---------------------------
  1462.  
  1463. Offline Orbit by Janne T. Siren  ( siren@mikrobitti.fi)
  1464.  
  1465. shareware as of ver 0.80 
  1466.  
  1467. Available on   Aminet    in comm/mail/oo080.lha
  1468.  
  1469. An offline message reader supporting Blue Wave, QWK, WWF, OMEN, and SOUP message
  1470. formats.
  1471.  
  1472. Requires:
  1473.  
  1474.  * WB 2.04+
  1475.  * 2 Mb Ram recommended
  1476.  
  1477.  Parnet 
  1478. --------
  1479.  
  1480. ParNET and ParBENCH
  1481.  
  1482. ParNET allows you to use your parallel port to network two Amigas or with
  1483. Parnet-Pc an Amiga and a Pc.  The plain ParNET software is difficult to install
  1484. and configure unless you have lots of Amiga experience.
  1485.  
  1486.  
  1487. ParBENCH written by Vernon Graner is an enhancement to ParNET which allows
  1488. installation and removal of ParNET by double clicking the mouse. ParBENCH makes
  1489. ParNET substantially easier to get functioning.
  1490.  
  1491. The latest version of ParBENCH can be found on the author's web site at:
  1492.  
  1493. http://www.graner.net
  1494.  
  1495.  
  1496. I could use some   input   from those who have the PC-Amiga parnet working, since I
  1497. have not set this up and people are asking for more details on what is required
  1498. and tricks to get it to work.
  1499.  
  1500.  
  1501. Both require a special cable which you can make yourself or buy already made.
  1502.  
  1503. ParNET works in a similar manner to NFS from the user's perspective. It allows you
  1504. to see the remote machine's disk drives as if they were local.
  1505.  
  1506.  
  1507. Envoy and Enlan-DFS take this a step further and include remote printing among
  1508. other things.
  1509.  
  1510.  Plip 
  1511. ----------
  1512.  
  1513. Plip.device
  1514.  
  1515. Plip.device is a SANA-II compliant (internal) parallel port network interface
  1516. driver.
  1517.  
  1518. Requirements:
  1519.  
  1520. A working internal parallel port.
  1521.  
  1522. A cable made as described in the plip docs
  1523.  
  1524. A SANA-II compliant networking package such as Envoy, AmiTCP, INet-225, etc.
  1525.  
  1526.  
  1527. Availability:
  1528.  
  1529.   Aminet   in the aminet/comm/net directory. The source code is also there.
  1530.  
  1531.  
  1532. Authors:
  1533.  
  1534. Original -- Oliver Wagner and Michael Balzer
  1535.  
  1536. Bug Fix mods -- R. Jeremy James
  1537.  
  1538. Further Dev -- Martin J. Laubach
  1539.  
  1540.  PPP-device 
  1541. -----------
  1542.  
  1543. PPP.device by Holger Kruse
  1544.  
  1545.   12006 Coed Drive
  1546.   Orlando, Fl 32826
  1547.   USA
  1548.  
  1549.  email:
  1550.   kruse@cs.ucf.edu
  1551.   ind00389@pegasus.cc.ucf.edu
  1552.  
  1553. ppp.device is a shareware package $15 US. The unregisterd version is on Aminet.
  1554. The registered version provides much better speed.
  1555.  
  1556. PPP has a built-in dialer with scripting facility. Supports PAP and CHAP
  1557. authentication which is required by some ISP's.
  1558.  
  1559. PPP requires Amiga WB 2.04 or higher and works with AmiTCP V2.3 or higher, AS225,
  1560. Envoy, Enlan-DFS(DecNet). There is no installation script but detailed
  1561. instructions are given for several versions of AmiTCP, and for Enlan-DFS. Brief
  1562. instructions are provided for AS225 and Envoy.
  1563.  
  1564.  SAMBA 
  1565. ------------
  1566.  
  1567. SAMBA
  1568.  
  1569.  
  1570. Available on  Aminet  as comm/tcp/amitcp_samba.lha
  1571.  
  1572.  
  1573. Short:    File serve amiga dir's to pc using samba ported to amiga version 2
  1574. Author: edwede@stl082.magnetek.com Uploader: edwede@stl082.magnetek.com Type:
  1575. comm/tcp Replaces: comm/tcp/amiga-samba.lha
  1576.  
  1577. This is a port of unix   samba   to the amiga. It will allow file sharing to a PC
  1578. from the amiga. This is in its early stages. Needs AmiTCP 4.0+
  1579.  
  1580. On the Amiga remember to make assigns for etc: and TMP: to point to RAM:
  1581.  
  1582. ON the UNIX side you also need SAMBA, and on a PC you need SOSS. To find SOSS use
  1583. archie to look for SOSSntr4.zip
  1584.  
  1585.  telser 
  1586. ----------------
  1587.  
  1588. Sam Yee announces:
  1589.  
  1590. Telser version 1.0  (Jan 1, 1995)
  1591.  
  1592.  
  1593. telser.device is a modem simulator over a telnet connection.  It interprets and
  1594. simulates basic modem commands so that you can use  your telecommunications (comm)
  1595. programs  over a telnet connection. In other words your comm program thinks it is
  1596. talking to a modem.  Terminal emulation, file transfers, etc. are all handled by
  1597. your comm  program. Connecting to a host is as simple as typing "ATDT abc.edu,23"
  1598. or even simpler if you add "abc.edu,23" to your comm program's phonebook.
  1599.  
  1600. telser supports the most common Telnet negotiation commands and  options. For
  1601. example, you may elect to notify the remote host on  changes to your terminal
  1602. emulation type, and window size.  An intuitive  "gadtools" graphical user
  1603. interface is supplied to control your telnet  connections. You also have the
  1604. option to automatically connect to a  host after starting up your comm program.
  1605. Instant logins at the click of  a button!
  1606.  
  1607. telser can run in host mode, which means it would accept incoming  calls. This
  1608. feature allows you to set up a "multi-line" bbs over the  internet!
  1609.  
  1610. Telser is capable of unlimited device units, which means you can have unlimited
  1611. incoming and outgoing connections.  Telser supports both  TCP/IP packages on the
  1612. Amiga namely AmiTCP (tested with V3.0b2  and V4.0) and AS225r2.
  1613.  
  1614.  
  1615. samy@sfu.ca
  1616.  
  1617.  term 
  1618. -----
  1619.  
  1620. TERM   by Olaf Barthel
  1621.           Brabeckstrasse 35
  1622.           D-30559
  1623.           Hannover
  1624.  
  1625.           olsen@sourcery.han.de
  1626.  
  1627.  
  1628.  
  1629. Terminal emulation program which can be found on Aminet in the comm section. It
  1630. has recently been updated and even works on 060 based Amigas.
  1631.  
  1632.  Termite  
  1633. ----------------------
  1634.  
  1635. Termite   by   Oregon Research  
  1636.  
  1637. a  modem Telecommunications package
  1638.  
  1639. MSRP: $49.95
  1640.  
  1641. Features:
  1642.  
  1643.   * Supports the XPR libs
  1644.   * supports 300 to 115,200 BPS
  1645.   * supports multiple line BBSs
  1646.   * AREXX support
  1647.   * Call logging
  1648.   * AmigaGuide Online help
  1649.   * Style guide compliant
  1650.   * Font and screen sensitive displays
  1651.   * multi-tasking chat window to prepare text before sending it
  1652.   * phone book, text macros, and configurable button bar
  1653.   * RIP driver available upon request
  1654.  
  1655. Requires:
  1656.  
  1657.   * WB 2.0+
  1658.   * 1Mb ram+
  1659.  
  1660.  TermiteTCP 
  1661. -------
  1662.  
  1663.  
  1664. TermiteTCP by   Oregon Research  
  1665.  
  1666.  
  1667. A TCP-IP stack designed to QUICKLY get you connected by modem to the internet
  1668. through your internet service provider.
  1669.  
  1670.  THOR 
  1671. -------------
  1672.  
  1673. THOR by Petter Nilsen and Eivind Nordseth, et al.
  1674.  
  1675.   email:  thor@hstud6.cs.uit.no
  1676.   WWW:    http://www.cs.uit.no/~kjelli/thor.html
  1677.   snail:  Ultima Thule Software
  1678.           Attn: Petter Nilsen
  1679.           Strandveien 59B
  1680.           N-9007 TROMSOE
  1681.           NORWAY
  1682.  
  1683. THOR is shareware.  It is available on the web site and   Aminet   in the comm
  1684. section.
  1685.  
  1686. THOR is an advanced multi-format offline mail and news reader, suporting the QWK,
  1687. Fido, UUCP, SOUP, Bluewave, Omen, ABBS, MBBS and Hippo(BBBS) message formats. THOR
  1688. can even handle multiple systems for those who use an ISP and some BBS's.  Thor
  1689. supports TCP-connections with NNTP, SMTP and POP3 with extensive MIME support.
  1690. THOR also supports AREXX, and is Amiga Style guide compliant.
  1691.  
  1692.  
  1693. THOR requires WB2.04 or higher, 1Mb of RAM, and a hard drive.
  1694.  
  1695.  TIN 
  1696. ----------------
  1697.  
  1698. TIN  by Mark Tomlinson  (mark@garden.equinox.gen.nz)
  1699.  
  1700. A newsreader which as of version 1.2 PL 3 supports NNTP. Version 1.3 is probably
  1701. out by now.
  1702.  
  1703. More later.
  1704.  
  1705.  TorqueWare (TM) 
  1706. ----------------------------------
  1707.  
  1708. TorqueWare (TM) by   AugmenTek    is a means of developing and  running parallel
  1709. programs over a network of Amigas.  It provides six  simple C functions to handle
  1710. the job of distributing data and execution  across the network.  A graphical user
  1711. interface allows for compiling  and linking locally or remotely, setting up the
  1712. runtime environment, and running the program -- but this can also be done
  1713. manually. A hypertext  user's guide and tutorial are provided. Instructions for
  1714. using the Amiga as client to a computational server running on a Silicon Graphics
  1715. or  Mac using TorqueWare form Torque Systems, Inc., are also provided.
  1716.  
  1717. TorqueWare is an implementation of the Linda parallel programming  model. Data are
  1718. placed in a global data space that is accessible to all processes, whether they
  1719. run locally or across the network.  One can  wait for data to appear, read it, or
  1720. remove it from that global data  space. C functions can be run as separate tasks
  1721. on either one computer or multiple computers, and these remote functions access
  1722. that global data space.  The global data space is content-addressable.
  1723.  
  1724. TorqueWare hides communication details, such as the nature of the underlying
  1725. communication mechanism, from you.  It supports different computers by handling
  1726. byte ordering.  TorqueWare attempts to keep  all of the computers busy if  there
  1727. is enough work.
  1728.  
  1729. As a programming utility, TorqueWare provides an operating system independent way
  1730. of multiprocessing.  Applications include network rendering (RayShade 3.0 already
  1731. allows for Linda),  news or database filtering, image processing, and audio
  1732. processing.
  1733.  
  1734. An example of code using TorqueWare versus socket programming can be found on
  1735.   aminet   under biz/demo/netprog_txt.lzh
  1736.  
  1737. TorqueWare requirements: SAS C 6.x,  AmigaDos 2.04 or higher, and network hardware
  1738. for multiprocessing.
  1739.  
  1740. MSRP for base development system $100
  1741.  
  1742. MSRP for general TCP/iP networking $150 per cpu.
  1743.  
  1744. Educational and quantity discounts available.
  1745.  
  1746.  VLT 
  1747. --------------
  1748.  
  1749. Valiant Little Terminal      by   Willy Langeveld    
  1750.  
  1751. A terminal emulator providing both Tektronix and DEC emulation. This little jewel
  1752. has been around for quite awhile. It is available on Fred Fish and Aminet.
  1753.  
  1754.  Voodoo 
  1755. ------------
  1756.  
  1757. Voodoo
  1758.  
  1759. A multithreaded GUI E-Mail reader
  1760.  
  1761. by Osma Ahvenlampi  Osma.Ahvenlampi@hut.fi
  1762.  
  1763. The GUI uses the ClassAct GUI toolkit. Voodoo provides MIME support from within
  1764. the application by using datatypes. Therefore Voodoo requires WB3.0 or higher. You
  1765. can have several messgaes open for both read or write at the same time.
  1766.  
  1767.  
  1768. Requirements:
  1769.  
  1770. WB3.0 or higher, 2Meg of ram, and a hard disk.
  1771.  
  1772. Compatiblity:
  1773.  
  1774. Works with UUCP, AmiTCP, Inet225, and others.
  1775.  
  1776. Availability:
  1777.  
  1778. Aminet in  /pub/aminet/comm/mail
  1779.  
  1780. Price:
  1781.  
  1782. Shareware, 150FIM, 35 USD, or 50 DEM
  1783.  
  1784.  
  1785. Distributability:
  1786.  
  1787. The demo version is freely distributable through non-commercial channels. More
  1788. information in documentation.
  1789.  
  1790.  X11R4 
  1791. --------------------
  1792.  
  1793. X11 Release 4  server and library by   GfxBase, Inc.  
  1794.  
  1795. GfxBase provides both a server so that you can run x clients on your Amiga, and a
  1796. development library so that you can write x clients for  your Amiga or other x
  1797. windows system.
  1798.  
  1799.   X11R4.3 Color Server  
  1800.  
  1801.   X11R4-Dev Libs  
  1802.  
  1803.   X11-product Availability  
  1804.  
  1805.  X11R4.3 Color Server 
  1806. -----------------------------------------
  1807.  
  1808. The X11 R4.3 server supports: 
  1809.  
  1810. - Up to (NTSC)1440x482 (568PAL) resolution. 
  1811.  
  1812. - Overscan, genlock, interlace, superhires, productivity, a2024 all supported.
  1813.  
  1814. - Superscreens up to 2560x2560 scrollable under 2.0
  1815.  
  1816. - Up to 32 colors (lowres).
  1817.  
  1818. - AGA support: 256colors/16M
  1819.  
  1820. Local Clients: 
  1821.  
  1822. olwm(OpenLook) twm(Tab Window Manager) bitmap, xfd, xfontsel,
  1823.  
  1824. xcalc, xmag, xsetroot, xsol, plus many more.
  1825.  
  1826. xpr (X printer program) supports all standard X devices plus supports
  1827.  
  1828. Amiga printers via the Amiga printer device mechanism.
  1829.  
  1830. Fonts: X11R5 fonts are included in this release.
  1831.  
  1832.  
  1833.    X11-Compatibility  
  1834.  
  1835.    Optional color gfx cards  
  1836.  
  1837.    X11-Requirements  
  1838.  
  1839.  X11-Compatibility 
  1840. -----------------------------------
  1841.  
  1842. Software support
  1843.  
  1844. ----------------------
  1845.  
  1846. network support:
  1847.  
  1848. Commodore   AS225   (tcp/ip)  Thunder Ridge TSSnet (  DECnet  ).
  1849.  
  1850. OS support:
  1851.  
  1852. Requires WB1.3 or later. Works better with 2.0. And best with 3.0
  1853.  
  1854. Coexists with Native Amiga Operating System, and works under  Intuition in its own
  1855. pull down screen.
  1856.  
  1857. Hardware Support
  1858.  
  1859. -------------------------
  1860.  
  1861. input support: 
  1862.  
  1863. international keyboards supported, Recommended 3 button mouse.
  1864.  
  1865. Compatibility with all models of the Amiga,
  1866.  
  1867.   A1000,A2000,A500,A2500,A3000,A3000T,A1200,A4000,A4000T.
  1868.  
  1869.  Optional  color gfx cards 
  1870. ---------------------------------------------------
  1871.  
  1872. Optional X11R5 for color graphics cards support
  1873.  
  1874.  - GDA1 from GfxBase
  1875.  
  1876.  - PicassoII
  1877.  
  1878.  - 1600GX from Ameristar
  1879.  
  1880.  X11-Requirements 
  1881. -------------------------
  1882.  
  1883. Requires minimum 1M of Ram for Server, more for local clients.
  1884.  
  1885. Requires 7M Harddisk, 15megs for standard installation.
  1886.  
  1887.  X11R4-Dev Libs 
  1888. ----------------------------------------------------
  1889.  
  1890. -------------X11 Release 4 Development libraries---------------------
  1891.  
  1892. Specially modified to work under AmigaDOS with SAS/C 6.51
  1893.  
  1894. Libraries:
  1895.  
  1896.         Xlib,Xaw,Xext,Xt,Xmu,oldX,Xau, BSD sockets
  1897.  
  1898. Includes:
  1899.  
  1900.         X11 Release 4 standard include files
  1901.  
  1902. Some sample source and lmkfiles for learning X11 on the Amiga.
  1903.  
  1904. X11 programs on unix machines can be ported right to the Amiga. Develop X
  1905. applications on the Amiga and know they can be ported to Unix platforms.
  1906.  
  1907.  X11-product Availability 
  1908. ------------------------------
  1909.  
  1910. products available from Amiga Dealers or   GfxBase, Inc.  
  1911.  
  1912. --------- List Prices ---------------
  1913.  
  1914. software:
  1915.  
  1916.  X11R4:  $395/$90
  1917.  
  1918.  X11tk: $250/$45
  1919.  
  1920.  XView: $250
  1921.  
  1922.  X11 Local development system: $475/$100 
  1923.  
  1924.   (does not include support for  as225/TSSnet)
  1925.  
  1926.  mwm motif window manager: $99
  1927.  
  1928.  Complete X11R4/with motif development system: $795.00
  1929.  
  1930. Hardware:
  1931.  
  1932. Boing 3button optical mouse, bought with X11, $75.00
  1933.  
  1934. GDA-1 hires graphics card 1024x768 256/16M colors $595.00
  1935.  
  1936.  Hardware-Specs 
  1937. =================
  1938.  
  1939. Specifications for Amiga Networking Hardware
  1940.  
  1941.   A2065  
  1942.  
  1943.   A4066  
  1944.  
  1945.   AmigaLink  
  1946.  
  1947.   Ariadne  
  1948.  
  1949.   GG2-Bus+ card  
  1950.  
  1951.   Hydra  
  1952.  
  1953.   ICard  
  1954.  
  1955.   ISDN-Master  
  1956.  
  1957.   LAN Rover  
  1958.  
  1959.   QuickNet  
  1960.  
  1961.  A2065 
  1962. -------------------
  1963.  
  1964. A2065 by   Commodore Business Machines  
  1965.  
  1966. The A2065 is no longer in production, but is listed here for historical purposes
  1967. in case you find one used.  It is unknown what Amiga Technologies plans to do with
  1968. the A2065 and A225 software.
  1969.  
  1970.  
  1971. Function: Full ANSI 802.3 type Ethernet protocols over either Type A (Thick
  1972. Ethernet) or Type B (Thin Ethernet/Cheapernet) connections.
  1973.  The  32K onboard RAM Buffer provides shared RAM between  Am7990 processor and the
  1974. Amiga.
  1975.  
  1976. Card Type: Amiga bus (100 pin), Autoconfig Interface Specs: 15 pin  female "D"
  1977. connector for Type A (Thick Ethernet)  networking with 100  nodes per segment
  1978. Female BNC coax connector  for Type B (Thin  Ethernet/Cheapernet) networking with
  1979. 30 nodes per segment.
  1980.  
  1981. Speed:    10Mbps CSMA/CD interface DMA data reading and writing to  shared RAM
  1982. Card Size: Full size Amiga board
  1983.  
  1984.  A4066 
  1985. -----------------
  1986.  
  1987. the A4066 by   Ameristar    replaces the A2065 ethernet card by  Commodore. The
  1988. A4066 supports 10BaseT Thin, and Thick ethernet. It is SANA II compatible and
  1989. supports the AS225r2 software as  well as    DECnet   at the same time.
  1990.  
  1991.  AmigaLink 
  1992. -------------------------
  1993.  
  1994. AmigaLink is a floppy port based networking solution which is SANA II compatible.
  1995. It will work with any Amiga with a free floppy port including CD32 with the
  1996. expansion module, and a floppy with a pass thru port.
  1997.  
  1998. Transfer rate: 450,000 bits per sec (~ 45KB/sec)
  1999.  
  2000. Max cable length: 100 meters (~330 feet)
  2001.  
  2002. cable type: RG-58U 50 ohm co-axial 
  2003.  
  2004. Cable connector: BNC and floppy port connector
  2005.  
  2006. Max # of computers: 20
  2007.  
  2008. Included Protocol: Network Operating System
  2009.  
  2010. optional Protocol: Envoy, or any SANA II compatible protocol
  2011.  
  2012. Supports remote printing using the Commodore CMD program.
  2013.  
  2014. Requirements: kickstart 1.2+, Workbench 1.3+, 512k ram
  2015.  
  2016. Recommended: Workbench 2.0+, 1MB+ ram, hard drive
  2017.  
  2018. SRP:
  2019.  
  2020. AmigaLink Starter Kit $259.95 
  2021.  
  2022.         20 software licenses and hardware for 2 nodes
  2023.  
  2024. AmigaLink Single node $124.95
  2025.  
  2026.             hardware only, no cable.
  2027.  
  2028.  Ariadne 
  2029. -----------------------------
  2030.  
  2031. Ariadne by   Village Tronic  
  2032.  
  2033. A SANA II compatible zorro bus ethernet card with two parallel ports.
  2034.  
  2035.   * Supports 10base-2 (thin ethernet, coax) and 10base-T (Twisted pair)
  2036.   * Socket for boot rom
  2037.   * hook up to two additional Amigas to the paallel ports with
  2038.     Liana (Envoy with a cable)
  2039.   * A  32kbyte cache to support cpu
  2040.   * Includes Envoy and SANA II driver for ethernet and parallel ports
  2041.  
  2042.  GG2-Bus+ card 
  2043. =============
  2044.  
  2045. The GG2 Bus+ by   Software Results Enterprises    lets you add  IBM-compatible
  2046. hardware to your Amiga.  The most common additions  are extra parallel and serial
  2047. ports, and _network_ cards.
  2048.  
  2049. The GG2 Bus+  is NOT a 486 bridgecard, and does NOT run windows,  it merely allows
  2050. you to access less expensive PC cards.
  2051.  
  2052.   GG2-HW Compatibility  
  2053.  
  2054.   GG2-PC drivers  
  2055.  
  2056.   GG2-SW Compatibility  
  2057.  
  2058.   GG2-Requirements  
  2059.  
  2060.   GG2-Availability  
  2061.  
  2062.  GG2-HW Compatibility 
  2063. --------------------------------------------------------------
  2064.  
  2065. The GG2 Bus+ supports almost all non-DMA AT-compatible (8 MHz  bus capable) PC
  2066. plug-in boards.  This includes such popular items as  internal modems, multi-I/O
  2067. boards, IDE hard drive controllers,  non-DMA ethernet boards, VGA boards, A/D
  2068. boards, etc.  Access to  the PC cards is at full Amiga Zorro II bus speed unless
  2069. wait state support is turned on.
  2070.  
  2071.  GG2-PC drivers 
  2072. ------------------------------------------
  2073.  
  2074. PC drivers included with GG2 Bus+ are:
  2075.  
  2076.  ibmser.device        
  2077.  
  2078.  A replacement serial device for internal modems and multi-I/O
  2079.  cards.  Includes automatic use of the 16550 FIFO buffer when  
  2080.  available.  Support for up to 4 serial ports at once,
  2081.  equivalent of COM1-4.
  2082.  
  2083.  ibmprint.device
  2084.  
  2085.  A new parallel output-only driver for printing through IBM LPT
  2086.  compatible parallel ports on multi-I/O cards.  Support for up
  2087.  to 3 printers at once, equivalent of LPT1-3.
  2088.  
  2089.  ibmIDE.device
  2090.  
  2091.  A driver program to allow the use of IDE, RLL or MFM hard drives.
  2092.  
  2093.  NE1000.device  and NE2000.device
  2094.  
  2095.  These are SANA-II ethernet drivers for Novell NE1000 and
  2096.  
  2097.  NE2000 boards and compatibles.
  2098.  
  2099. NE1000 is  8 bit card, 8K memory
  2100.  
  2101. NE2000 is 16 bit card
  2102.  
  2103.  GG2-SW Compatibility 
  2104. ------------------------------------------------------- GG2 Bus+
  2105.  
  2106.   Since the Ethernet drivers are   SANA II   compliant, you can use your
  2107. GG2/Ethernet combination with all of the popular network packages,  such as
  2108.   Envoy   (from IAM),   AS225r2   (from Commodore) and    AmiTCP   (available via ftp
  2109. from Aminet sites).  
  2110.  
  2111. Commodore's AS225r1 is *not* a SANA-II networking package, and  will not work with
  2112. an Ethernet card on a GG2 Bus+.
  2113.  
  2114. !!! Oxxi's Novell Netware Client software is *not* a SANA II networking package
  2115. and will not work with an Ethernet card on a GG2 Bus+. !!!
  2116.  
  2117. CrossPC and PCTask  software PC emulators are aware of the GG2  Bus+ and will let
  2118. you use IBM-compatible hardware from inside the  emulation. Among other IBM
  2119. peripherals that have been successfully  operated are, ROM programmers and
  2120. PC-television cards.
  2121.  
  2122.  GG2-Requirements 
  2123. ----------------------------------------------
  2124.  
  2125. The GG2 Bus+ occupies one Zorro II slot aligned with an PC-AT slot in  an Amiga
  2126. 2000, A2500, A3000, or A4000.  It has essentially the same  form factor as a
  2127. Commodore bridgeboard.  You will need at least one  additional open PC-AT slot for
  2128. your plug-in PC card.  The GG2 Bus+  requires 1 Megabyte of available AUTOCONFIG
  2129. memory space to correctly map all of the PC memory locations.  All address and
  2130. data lines to the PC bus are buffered to avoid loading-down Amiga bus  lines.
  2131.  
  2132. Most of the software requires 2.04 or higher.  The actual device drivers
  2133. themselves (ibmser.device, ibmIDE.device...) will probably work under Amiga Dos
  2134. 1.3, but the support programs (like SwitchControl and  SerPrefs) don't.
  2135.  
  2136.  GG2-Availability 
  2137. -----------------------------------------
  2138.  
  2139. GG2 Bus+ is   $119.95 USD
  2140.  
  2141. All sales are being handled by   Software Results Enterprises  ,   so there are no
  2142. distributors in any countries.
  2143.  
  2144.  
  2145.  Hydra 
  2146. ------------------
  2147.  
  2148. Hydra   by    Hydra Systems  
  2149.  
  2150. Ethernet cards for the Amiga 2/3/4000. 
  2151.  
  2152. Did have a model for the A500.
  2153.  
  2154. A SANA II driver comes with the new boards or is available from the vendor. The
  2155. driver is called hydra.device, and  V1.33 even works with the old v1.0 boards.
  2156.  
  2157. Has thin wire connector (BNC) and a thick wire connector (15 pin D).
  2158.  
  2159.  ICard 
  2160. -------------------
  2161.  
  2162. ICard by   Interworks  
  2163.  
  2164. A 16 bit  ethernet card for the A1200's PCMCIA slot.
  2165.  
  2166. Provides 10BaseT and 10Base2 ethernet connectors.
  2167.  
  2168. Provides SANA II driver for compatibility with any SANA II compatible network
  2169. protocol including Interworks   I-Net 225   and    ENLAN-DFS  
  2170.  
  2171. MSRP $299
  2172.  
  2173.  ISDN-Master 
  2174. --------------------------
  2175.  
  2176. ISDN Master II by   ith Kommunikationstechnik GmbH    in Germany
  2177.  
  2178. Software portion of the product supports both English and German languages.
  2179.  
  2180.  
  2181. The ISDN Master II is an update to the ISDN Master as reviewed by Alan Berney
  2182. which can be found in the comp.sys.amiga.review archives on Aminet.
  2183.  
  2184. According to the company spokesman it should work with NI-1 in the US, but I'd
  2185. like to   hear   from some users if you have it working.
  2186.  
  2187.  
  2188.  Hardware:
  2189.  --------
  2190.  
  2191. ISDN-MASTER II is an Autoconfig Zorro-II card for all Amigas powered by at least a
  2192. 68020 processor.  It has two western sockets for ISDN line in/out, one socket for
  2193. combined headsets (micro/earphone), and one separate microphone and aux input.
  2194. Enhanced version is shipped together with a small add-on card that allows full
  2195. telephone features.
  2196.  
  2197.  Features:
  2198.  --------
  2199.  
  2200.  * Autoconfig
  2201.  * Transfer up to 7500 cps
  2202.  * parallel telephone and data calls
  2203.  * Hayes-AT set
  2204.  * fossil.device is compatible with serial.device
  2205.  * 64 byte FIFo ram buffer
  2206.  * 2 * B-channel and 1 * D-Channel (S0-connection)
  2207.  * S0 considerable
  2208.  * ISDN and Euro-ISDN support
  2209.  * D port monitor
  2210.  * passiv card
  2211.  * Audio-Inline with digitize audio
  2212.  
  2213.  Requirements:
  2214.  ------------
  2215.  
  2216.  * kickstart 2.x or higher
  2217.  * 1 Mb Ram minimum, prefer 2 Mb
  2218.  * 68020 or higher
  2219.  
  2220.  Software (standard version):
  2221.  --------------------------
  2222.  
  2223. The software splits up in three major parts all of which support both the German
  2224. and English language:
  2225.  
  2226.   1) The device (called bscisdn.device)
  2227.       * it supports up to 10 units compatible with standard serial.device
  2228.       * works with E-DSS1, 1TR-6, Numeris, and NI-1.
  2229.       * it should work with any existing communications-software
  2230.  
  2231.   2) The telephone-program
  2232.       * supports many standard phone features such as redial, rejecting
  2233.         certain numbers, different ring signals per number
  2234.       * phonebooks with freely definable groups and unlimited size
  2235.       * answering machine with configurable messages per number
  2236.       * log file of incoming and outgoing calls with numbers, date, and time
  2237.       * parallel telephone and data calls
  2238.       * three user conference
  2239.  
  2240.   3) The add-on programs
  2241.       * prefs program for configuring the device.
  2242.       * monitor program for monitoring ISDN activity (debugging tool).
  2243.       * Status monitor with connection info similar to a modem panel.
  2244.  
  2245.   Software (enhanced version):
  2246.   ---------------------------
  2247.  
  2248. A complete rewrite of all above software with the basic concept of bringing a
  2249. software-interface called CAPI 2.0 to the Amiga. The features of the software are
  2250. basically the same as the standard version, but with the CAPI 2.0 interface
  2251. developers are now able to communicate directly to the device using CAPI instead
  2252. of serial.device. CAPI allows applications to manage more than one transmission
  2253. channel even from several boards inside one Amiga. The new software also supports
  2254. up to eight boards per computer. This has enabled ISDN Master II to be used to
  2255. manage large voice-mail systems via Amiga. One of the largest uses 70 (!) boards
  2256. in an Amiga network environment.
  2257.  
  2258. Note: the Enhanced version is currently shipping with the card. If you need the
  2259. old standard version it is available on the ftp site.
  2260.  
  2261.  
  2262.   Support:
  2263.   -------
  2264.  
  2265. Support is performed via internet. Questions will be answered by
  2266. support@ithnet.com Updates may be obtained via ftp from ftp.ithnet.com or
  2267. www.ithnet.com. There is also a mailing-list for obtaining complete
  2268. software-updates - ask support@ithnet.com for free subscription.
  2269.  
  2270.   Price:
  2271.   -----
  2272.  
  2273.   Available directly from ITH.
  2274.   USD 449, - with telephone feature card
  2275.   USD 349, - without
  2276.   USD 100, - upgrade for telephone feature card
  2277.   USD  15, - international shipping
  2278.  
  2279.  LAN Rover 
  2280. ------------------------
  2281.  
  2282. LAN Rover by   ASDG      LAN Rover is now called EB920.
  2283.  
  2284. ASDG is now owned by AVID, but you might find the cards used.
  2285.  
  2286. A thin wire ethernet card for Amiga 2000,3000, and 4000. It is a full length Zorro
  2287. II card and comes with   SANA II   drivers and  supports adjustable interrupt
  2288. settings and network address roms.
  2289.  
  2290. Being SANA II compatible means it will support all the major network protocols
  2291. available for the Amiga.
  2292.  
  2293.  QuickNet 
  2294. -----------------------
  2295.  
  2296. QuickNet (TM)  Fast peer-to-peer networking system for the Amiga
  2297.  
  2298. by   Resource Management Force  
  2299.  
  2300. Authors: Neil Dugan, Daniel Koch, and Norman Pakes
  2301.  
  2302. A hardware and software solution for networking Amigas to Amigas.
  2303.  
  2304. Zorro II card which supports thin ethernet (802.3). Other versions such as zorro
  2305. III may be available by now.
  2306.  
  2307. Software allows remote mounting of Amiga hardware and file systems including
  2308. filesystems which are being imported by another system. This allows bridging
  2309. between Envoy and Quicknet for example.
  2310.  
  2311. Supports Arexx and record locking.
  2312.  
  2313. Requires WB 1.3, but WB2.04 or higher recommended.
  2314.  
  2315. Call for pricing and configuration availability.
  2316.  
  2317.  Manufacturers 
  2318. ----------
  2319.  
  2320. Some Vendors are listed for historical reasons.
  2321.  
  2322.   Ameristar  
  2323.  
  2324.   AmiTrix  
  2325.  
  2326.   ASDG  
  2327.  
  2328.   AugmenTek  
  2329.  
  2330.   Canadian Prototype Replicas  
  2331.  
  2332.   Commodore Business Machines  
  2333.  
  2334.   Consultron  
  2335.  
  2336.   CSA  
  2337.  
  2338.   GfxBase, Inc.   
  2339.  
  2340.   Hydra Systems  
  2341.  
  2342.   IAM  
  2343.  
  2344.   Interworks  
  2345.  
  2346.   ith Kommunikationstechnik GmbH  
  2347.  
  2348.   Legendary Design Technologies, Inc.  
  2349.  
  2350.   Media4 Productions  
  2351.  
  2352.   NSDI  
  2353.  
  2354.   Oregon Research  
  2355.  
  2356.   Oxxi  
  2357.  
  2358.   Progressive Peripherals  
  2359.  
  2360.   Resource Management Force  
  2361.  
  2362.   SCALA, Inc.  
  2363.  
  2364.   Software Results Enterprises  
  2365.  
  2366.   Spectronics  
  2367.  
  2368.   Thunder Ridge, Inc.  
  2369.  
  2370.   Village Tronic  
  2371.  
  2372.  Ameristar 
  2373. ----------------------
  2374.  
  2375.      Ameristar products are distributed by 
  2376.  
  2377.       Creative Equipment International (CEI)
  2378.         5555 W. Flagler St
  2379.         Miami, Florida  33134  USA
  2380.         Phone (305) 266-2800
  2381.  
  2382. You could also buy the board mail order.
  2383.  
  2384.  AmiTrix 
  2385. ----------
  2386.  
  2387.   AmiTrix Development
  2388.  
  2389.   5312-47 Street
  2390.   Beaumont, Alberta, T4X 1H9
  2391.   Canada
  2392.  
  2393.   Phone or Fax: 1+ 403-929-8459
  2394.   email: sales@amitrix.com
  2395.          support@amitrix.com
  2396.   web:   http://www.networkx.com/amitrix/index.html
  2397.  
  2398.  ASDG 
  2399. -----------------
  2400.  
  2401. Last known address for ASDG:
  2402.  
  2403.     ASDG, Inc.
  2404.     925 Stewart St.
  2405.     Madison, WI 53713
  2406.     Phone (608) 273-6585
  2407.     Fax (608) 271-1988
  2408.  
  2409. They changed names to Elastic Reality and then were bought by AVID.
  2410.  
  2411.  AugmenTek 
  2412. ------------------------
  2413.  
  2414.    AugmenTek
  2415.  
  2416.   3606 S. 180th St. C-22
  2417.   SeaTac, WA 98188-4339
  2418.   USA
  2419.  
  2420.   Phone: (206) 246-6077
  2421.   email:  augmentek@acm.org
  2422.  
  2423.  Canadian Prototype Replicas 
  2424. ------------------------------------------------
  2425.  
  2426.           Canadian Prototype Replicas
  2427.  
  2428.            PO Box 8,
  2429.            Breslau, Ontario
  2430.            Canada
  2431.            N0B 1M0
  2432.  
  2433.           (519) 884-4412
  2434.  
  2435.  
  2436.  Allan M. Purtle says registered customers can obtain
  2437.  technical support via email to snapper@mgl.ca
  2438.  
  2439.  Allan also says that the TCP/IP Base kit is also available from:
  2440.  
  2441.    HT Electronics
  2442.    422 South Hillview Drive
  2443.    Milpitas, California  95035
  2444.    (408)934-7700
  2445.  
  2446.  Commodore Business Machines 
  2447. ------------------------------------------------
  2448.  
  2449. For Historical Purposes:
  2450.  
  2451.           Commodore Business Machines
  2452.           1200 Wilson Dr.
  2453.           West Chester, PA 19380
  2454.           (215) 431-9100, (215) 436-4200
  2455.  
  2456.  Consultron 
  2457.  Consultron
  2458.  8959 Ridge Rd
  2459.  Plymouth, MI 48170-3213
  2460.  
  2461.  Tech supp phone: (313)459-7271
  2462.  
  2463.  CSA 
  2464. ---------------
  2465.  
  2466. CSA
  2467.  
  2468.  Computer System Associates, Inc.
  2469.  Stephen Riker, Director of Sales and Marketing
  2470.  
  2471.     CSA
  2472.     7564 Trade Street
  2473.     San Diego, CA 92121
  2474.  
  2475.     PH: (619)566-3911
  2476.     FAX:(619)566-0581
  2477.  
  2478.  GfxBase, Inc.  
  2479. ------------------------------------------------
  2480.  
  2481. Contact Dale Luck at 
  2482.  
  2483.  GfxBase, Inc.
  2484.  PO Box 360814
  2485.  Milpitas, Ca. 95036-0814
  2486.  
  2487.  Phone: (408) 262-1469 
  2488.  FAX: (408) 262-8276
  2489.  
  2490.  Hydra Systems 
  2491. -----------------------------
  2492.  
  2493.  Hydra Systems
  2494.  
  2495.  Wyndrushe House
  2496.  Red Land, Kenilworth
  2497.  Warwickshire
  2498.  England CV8 1PB
  2499.  
  2500.  Tel/Fax: +44 203 473333
  2501.  
  2502.  IAM 
  2503. --------------
  2504.  
  2505. IAM
  2506.  
  2507.  
  2508.  Direct postal mail to:
  2509.  
  2510.      Intangible Assets Manufacturing
  2511.      828 Ormond Avenue
  2512.      Drexel Hill, PA  19026-2604
  2513.      USA
  2514.  
  2515.  voice: (610) 853-4406
  2516.  fax: (610) 853-3733
  2517.  
  2518.  WWW:  http://www.iam.com/iam
  2519.  
  2520.  Direct electronic inquiries to:
  2521.  
  2522.         info@iam.com -- a robot with less info than the IAM web pages
  2523.         sales@iam.com -- to get info or to place an order
  2524.         corections@iam.com -- for any errors you find in 
  2525.                              "Connect Your Amiga!"
  2526.         envoy-help@iam.com -- get envoy support here (include serial number
  2527.                              from your IAM disk in your request for support
  2528.         envoy-bugs@iam.com -- report bugs here
  2529.         registration@iam.com -- use email instead of mailing a card
  2530.         francais@iam.com -- for all French language email for IAM
  2531.         italiano@iam.com -- for all Italian language email to IAM
  2532.         dale@iam.com -- Dale L. Larson
  2533.         jan@iam.com -- Janet McIlvaine
  2534.         mikec@iam.com -- Michael Colligon
  2535.         dosioc@iam.com -- Claudio Dosio
  2536.  
  2537.  Interworks 
  2538. -----------------------
  2539.  
  2540.    Interworks
  2541.  
  2542.    43191 Camino Casillas 
  2543.    Suite B2469
  2544.    Temecula, CA 92592-3714
  2545.  
  2546.    phone: (909) 699-8120
  2547.      FAX: (909) 699-8279
  2548.  
  2549.    Web:  http://www.iworks.com/
  2550.  
  2551.  
  2552.    EMAIL:
  2553.  
  2554.          orders@iworks.com --- place product orders
  2555.            info@iworks.com --- general Interworks information
  2556.       tnet.info@iworks.com --- T-Net render farm software info
  2557.      enlan.info@iworks.com --- ENLAN-DFS Network info
  2558.    inet225.info@iworks.com --- Inet 225 TCP/IP info
  2559.      icard.info@iworks.com --- Icard PCMCIA ehternet info
  2560.      hydra.info@iworks.com --- Hydra Systems ethernet info
  2561.  
  2562. For tech support simply change the .info above to .support for example
  2563. tnet.support@iworks.com
  2564.  
  2565.         abrooks@iworks.com --- Allen Brooks - President
  2566.  
  2567.  ITH 
  2568. --------------------
  2569.  
  2570.  ith Kommunikationstechnik GmbH
  2571.  Reiterstrasse 24
  2572.  D-94447 Plattling / Germany
  2573.  phone +49 9931 9188-0
  2574.    fax +49 9931 9188-44
  2575.  email support@ithnet.com
  2576.    web http://www.ithnet.com
  2577.  
  2578.  design-tech 
  2579. ---------------
  2580.  
  2581. Legendary Design Technologies, Inc.
  2582.  
  2583. makers of Link It! and other Amiga products
  2584.  
  2585.  515 Park Road North #9
  2586.  Brantford, ON  N3R 7K8
  2587.  
  2588.  Or
  2589.  
  2590.  POB 1147
  2591.  Lewiston, NY 14092-8147
  2592.  USA
  2593.  
  2594.  
  2595.  Phone: (519) 753-6120
  2596.  Fax: (519) 753-5052
  2597.  
  2598.  Internet:  legend@io.org
  2599.  Home Page: http://www.io.org/~legend
  2600.  
  2601.  Media4 
  2602. ---------
  2603.  
  2604.  Media4  Productions
  2605.  2800 University Avenue
  2606.  Suite H1B-101
  2607.  West Des Moines, IA 50266
  2608.  
  2609.  Phone: (515)225-7409
  2610.  
  2611.  Brian Landwehr, President
  2612.  blandwehr@bix.com
  2613.  
  2614.  NSDI 
  2615. ------------
  2616.  
  2617. makers of AmiTCP
  2618.  
  2619. Network Solutions Development Inc. (NSDi).
  2620.  
  2621.  email amitcp-group@nsdi.fi
  2622.  
  2623.  NSDI
  2624.  POB 32
  2625.  FIN-02151 ESPOO
  2626.  Finland
  2627.  Europe
  2628.  
  2629.  fax number: 358-207-34-6734
  2630.  
  2631.  for more info see their web site:  http://www.nsdi.fi
  2632.  
  2633.  Oregon Research 
  2634. ---------------------------------
  2635.  
  2636. Oregon Research
  2637.  
  2638.   16200 S.W. Pacific Hwy., Suite 162
  2639.   Tigard, Or 97224
  2640.  
  2641.  ph: (503) 620-4919
  2642.  fax: (503) 624-2940
  2643.  
  2644.  Internet: orres@teleport.com
  2645.  Genie: ORA
  2646.  CompuServer: 71333,2655
  2647.  
  2648.  Oxxi 
  2649.  ------------------------------------------------
  2650.  
  2651.  Oxxi
  2652.  
  2653.  Last known address:
  2654.    P.O. Box 90309, 
  2655.    Long Beach, CA 90809
  2656.    Phone:   (310) 427-1227
  2657.  
  2658. However the Novell client can be gotten from   Interworks   still.
  2659.  
  2660.  
  2661.  Progressive Peripherals 
  2662.   ------------------------------------------
  2663.  
  2664.          Last Known address for 
  2665.  
  2666.          Progressive Peripherals & Software
  2667.  
  2668.           464 Kalamath Street, Denver, CO 80204
  2669.           (303) 825-4144, (303) 893-6938 (FAX)
  2670.  
  2671. Apparently out of business. Anyone with information on the disposition  of their
  2672. product line please provide   FEEDBACK  
  2673.  
  2674.  Resource Management Force 
  2675. ------------------------------------------------
  2676.  
  2677.  Resource Management Force Pty Ltd
  2678.  
  2679.  70-74 may street
  2680.  St Peters NSW 2044
  2681.  Australia
  2682.  
  2683.  Tel: +61 2 550 4244
  2684.  fax: +61 2 550 4284
  2685.  
  2686.  email:  cbmaus!rmf!danielk@rmf.adsp.sub.org
  2687.  
  2688.  SCALA, Inc. 
  2689. ------------------------------
  2690.  
  2691.   SCALA, Inc.
  2692.  
  2693.   12110 Sunset Hills, Dr. Ste 100
  2694.   Reston, VA 22090
  2695.  
  2696.   phone: (703) 709-8043
  2697.  
  2698.   WWW:  http://www.scala.com
  2699.  
  2700.  Software Results Enterprises 
  2701. -------------------------------------------------
  2702.  
  2703.   Software Results Enterprises
  2704.  
  2705.    2447 N. 4th St., Ste. B
  2706.    Columbus, OH 43202-2706
  2707.  
  2708.   phone: 614/262-9146 (voice)
  2709.   fax: 614/267-2683
  2710.  
  2711.    sales@kumiss.infinet.com
  2712.   support@kumiss.infinet.com
  2713.  
  2714. Please use e-mail whenever possible.  It leaves more time to develop products.
  2715.  
  2716. Also be sure to ask for the GGII Bus+ FAQ which goes into  more specifics than is
  2717. practical in this FAQ.
  2718.  
  2719.  Spectronics 
  2720. -----------
  2721.  
  2722. Spectronics Int'l USA
  2723.  
  2724.   34 E. Main Street #23
  2725.   Champaign, IL 61820
  2726.  
  2727.   Phone: (217) 352-0061
  2728.   Fax: (217) 352-0063
  2729.   BBS: (217) 352-7627
  2730.  
  2731. Eddy Coopmans,  President
  2732.  
  2733.  Thunder Ridge, Inc. 
  2734.  ------------------------------------------------
  2735.  
  2736.  Thunder Ridge, Inc.
  2737.  
  2738.  N9353 Benson Road
  2739.  Brooklyn, WI  53521
  2740.  
  2741.       phone: (608) 455-1039
  2742.         fax: (608) 455-1317
  2743.       email:  73071.1356@compuserve.com
  2744.  
  2745.  Village Tronic 
  2746. ------------------------------
  2747.  
  2748.   Village Tronic
  2749.  
  2750.   Wellweg 95 
  2751.   D-31157 Sarstedt
  2752.   Germany
  2753.  
  2754.   Tel: +49/(0)5066/7013-0        Switchboard
  2755.   Tel: +49/(0)5066/7013-10        technical hotline
  2756.   Tel: +49/(0)5066/7013-11        orders
  2757.   Tel: +49/(0)5066/7013-40        Mailbox
  2758.   Tel: +49/(0)5066/7013-49        Telefax
  2759.  
  2760.  Related FAQs 
  2761. =================
  2762.  
  2763. RELATED INFORMATION (FAQ's, web pages, etc.)
  2764.  
  2765. Other FAQ's:
  2766.  
  2767.   FTP FAQ  
  2768.  
  2769.   FAQ archive  
  2770.  
  2771.   BDG to Internet  
  2772.  
  2773.   Amiga CD32 FAQ  
  2774.  
  2775.   AmigaNOS-FAQ  
  2776.  
  2777.   AmiTCP FAQ  
  2778.  
  2779.   Amosaic-FAQ  
  2780.  
  2781.   RFC  
  2782.  
  2783.   NEWS FAQ  
  2784.  
  2785.   UUCP FAQ  
  2786.  
  2787.   Wiedmann's Amiga FAQ  
  2788.  
  2789.   X11 FAQ  
  2790.  
  2791.   ZEN  
  2792.  
  2793.   DAK's Amiga FAQ  
  2794.  
  2795.   misc  
  2796.  
  2797. Amiga specific books:
  2798.  
  2799.   Connect your Amiga  
  2800.  
  2801.  
  2802. Other important sources of information:
  2803.  
  2804.   Aminet  
  2805.  
  2806.   Fred Fish  
  2807.  
  2808.   c.s.a.announce  
  2809.  
  2810.   AmigaZone  
  2811.  
  2812. Web pages:
  2813.  
  2814. A good how to hook an Amiga500 to the internet:
  2815.  http://www.ms.mff.cuni.cz/acad/webik/~pmit2218/amiga/
  2816.  
  2817. A good list of networking software and how to install it:
  2818.  http://www.cris.com/~Kainaw/tcp/
  2819.  
  2820. Page of links to the Aminet sites:
  2821.  http://www.cucug.org/amifiles.html
  2822.  
  2823. Amiga to WinNT networking
  2824.  http://www.mt-inc.com/faq.htm
  2825.  
  2826. Tom Hood's page:
  2827.  http://www.ainet.com/eye/welcome.html
  2828.  
  2829. Links to text versions of Amiga FAQ's:
  2830.  http://www.cis.ohio-state.edu/hypertext/faq/usenet/amiga/top.html
  2831.  
  2832.  FTP FAQ 
  2833. ---------------------
  2834.  
  2835. All about FTP is a FAQ on the File Transfer Protocol (FTP) application for the
  2836.   TCP-IP   protocol.  The FAQ is posted to comp.sys.amiga.misc,
  2837. comp.sys.amiga.introduction, and the comp.sys.amiga.datacomm  news groups. Thus it
  2838. should be available on the   FAQ archive   site.
  2839.  
  2840. It should be read by anyone wishing to download files from   Aminet   or anyone
  2841. wishing to know more about FTP.
  2842.  
  2843. It is posted by umueller@wuarchive.wustl.edu
  2844.  
  2845.  FAQ archive 
  2846. -----------
  2847.  
  2848. You can find numerous FAQ's posted to the news.answers  news  group.  They are
  2849. also cross posted to *.answers for the specific news  group to which the FAQ is
  2850. related. For example this FAQ is cross  posted to the comp.answers news group.
  2851. This makes it easier to find  related FAQ's.  
  2852.  
  2853. There are several FAQ's slanted towards new users, so instead of  flaming someone
  2854. try sending them the appropriate FAQ.
  2855.  
  2856. The FAQ's are updated periodically, and the older versions are  archived at
  2857. several sites. Both the current and the archived FAQ's are also available via
  2858. Mosaic, and anonymous FTP in addition  to being available through the news.
  2859.  
  2860. RTFM.MIT.EDU [18.20.0.224]  is one of the primary archive sites for news.answers
  2861. FAQ's and it supports anonymous FTP and email.  To  use email send a message with
  2862. "send usenet/news.answers/pdial" as  the message  to mail-server@rtfm.mit.edu. For
  2863. more information send  "help" as the message.
  2864.  
  2865.  
  2866. If the RTFM is too busy, you can try archie or veronica to search for other ftp or
  2867. gopher sites which have the FAQ files.
  2868.  
  2869. More and more FAQ's are also available as web pages, so you might also try a web
  2870. search engine such as www.yahoo.com.
  2871.  
  2872.  BDG to Internet 
  2873. ----------------------------
  2874.  
  2875. Big Dummies' Guide (DBG) to Internet  is available in Amiga Guide  format on
  2876.   Aminet  . It explains more about the history of the Internet, and some of the same
  2877. topics covered in this FAQ.
  2878.  
  2879.  AmigaNOS-FAQ 
  2880. -----------------------------
  2881.  
  2882. AmigaNOS is a serial port only version of TCP/IP. The AmigaNOS FAQ is posted to
  2883. comp.sys.amiga.datacomm   news.answers and comp.answers  news groups.
  2884.  
  2885. and should be on the   FAQ archive   as...
  2886.  
  2887.   /pub/usenet/news.answers/amiga/AmigaNOS-faq
  2888.  
  2889.  AmiTCP FAQ 
  2890. -------------------------
  2891.  
  2892.  
  2893. The AmiTCP FAQ is now maintained by Mike Meyer and is available in  html format so
  2894. you can access it with Amosaic at
  2895.  
  2896.  http://www.phone.net/ATCPFAQ/amitcp.html
  2897.  
  2898.  
  2899. Note: case matters.
  2900.  
  2901. AmiTCP FAQ has been released by Neil McRae.  Look in the comp.sys.amiga.datacom
  2902. news group for biweekly updates.  It is also an officially accepted FAQ by the
  2903. news.answers moderators.  Therefore it can be found in news.answers, comp.answers,
  2904. and in the   FAQ archive  
  2905.  
  2906.  Amosaic-FAQ 
  2907. --------------------------
  2908.  
  2909. Clive Thomas has an Amosaic FAQ available from:
  2910.  
  2911.  ftp.demon.co.uk
  2912.     pub/amiga/info/Amosaic.FAQ.lha
  2913.  
  2914.  
  2915. Mike Meyer also has an Amosaic FAQ available from:
  2916.  
  2917.   http://www.phone.net/ATCPFAQ/amosaic.html
  2918.  
  2919.  cd31-faq 
  2920. ----------
  2921.  
  2922. Amiga CD32 FAQ has a ton of information including networking options for the CD32
  2923. and CDTV.
  2924.  
  2925. It is available:
  2926.  
  2927.    mail -- server@rtfm.mit.edu
  2928.            send usenet/news.answers/amiga/CD32-FAQ/part1
  2929.    ftp  -- rtfm.mit.edu -- /pub/usenet/news.answers/amiga/CD32-FAQ/part1
  2930.  
  2931.  RFC 
  2932. --------------
  2933.  
  2934. RFC  Request For Comment 
  2935.  
  2936. These are good documents if someone wants to understand the  technical side of the
  2937. protocol.  They can be found online at a number  of sites by archie, but they are
  2938. officially available from just a few.
  2939.  
  2940. RFCs can be obtained via FTP from 
  2941.  
  2942.   NIS.NSF.NET,             NISC.JVNC.NET,
  2943.   VENERA.ISI.EDU,          WUARCHIVE.WUSTL.EDU,
  2944.   SRC.DOC.IC.AC.UK,        FTP.CONCERT.NET,
  2945.   DS.INTERNIC.NET,         NIC.DDN.MIL.
  2946.  
  2947. Details on obtaining RFCs via FTP or EMAIL may be obtained by  sending an EMAIL
  2948. message to "rfc-info@ISI.EDU" with the message  body "help: ways_to_get_rfcs". For
  2949. example:
  2950.  
  2951.         To: rfc-info@ISI.EDU
  2952.         Subject: getting rfcs
  2953.         help: ways_to_get_rfcs
  2954.  
  2955. Requests for special distribution should be addressed to either the author of the
  2956. RFC in question, or to NIC@NIC.DDN.MIL.  Unless specifically noted otherwise on
  2957. the RFC itself, all RFCs are for unlimited distribution.
  2958.  
  2959.  NEWS FAQ 
  2960. -------------------------
  2961.  
  2962. The NEWS FAQ can be found at the   FAQ archive   or on the  news.answers or
  2963. comp.answers news group.  It explains some of the  history and  different
  2964. incarnations of news servers and readers.
  2965.  
  2966. There are also specific FAQs for the INN news server and others.
  2967.  
  2968. Also there are specific news groups for those who wish to be administrators of a
  2969. news server.
  2970.  
  2971.  UUCP FAQ 
  2972. ------------------------
  2973.  
  2974. The UUCP FAQ is posted to the comp.sys.amiga,uucp, and alt.sys.amiga.uucp news
  2975. group.
  2976.  
  2977. It is available at the   FAQ archive   site.
  2978.  
  2979.  X11 FAQ 
  2980. --------------------
  2981.  
  2982. X windows is such a big topic there is a FAQ dedicated to it regardless of vendor.
  2983. It is posted in multiple parts in comp.windows.x and news.answers news groups
  2984. which means it is available from    FAQ archive   
  2985.  
  2986. You can send submissions to   faq%craft@uunet.uu.net
  2987.  
  2988. BTW,  uunet.uu.net is one of those cross over points between the  USENET and the
  2989. Internet.
  2990.  
  2991.  Wiedmann's Amiga FAQ 
  2992. ---------------------------------------
  2993.  
  2994. Jochen Wiedmann's Amiga FAQ
  2995.  
  2996. Can be found at   Aminet   sites in the 
  2997.  
  2998.   /pub/aminet/tex/docs directory
  2999.  
  3000.   with the file name  AmigaFAQxxxxxx.lha
  3001.   where xxxxxx is the date.
  3002.  
  3003.   send submissions to  
  3004.  
  3005.     wiedmann@mailserv.zdv.uni-tuebingen.de
  3006.     or  Am Eisteich 9
  3007.         72555 Metzingen (Germany)
  3008.         Tel.  07123 / 14881
  3009.  
  3010. Mr. Wiedmann's FAQ can now be found on line using Mosaic. It is now part of Mr.
  3011. Witbrock's Amiga Home Page. It was converted to HTML from Amiga Guide by Mr.
  3012. Witbrock's AG2HTML.PL   perl script. The script is on line also.
  3013.  
  3014.  ZEN 
  3015. -------------
  3016.  
  3017. Zen and the Art of the Internet: A Beginner's Guide
  3018.  
  3019. A booklet explaining the basic concepts of ideas behind using the Internet. It
  3020. explicitly avoids machine or OS specific commands or bias. 
  3021.  
  3022. The booklet is widely available, probably even from your service provider. It is
  3023. also available via FTP from ftp.uu.net [137.39.1.9] in the pub/zen directory or
  3024. you can use Archie or Veronica to locate a copy.
  3025.  
  3026.  DAK's Amiga FAQ 
  3027. --------------------------------
  3028.  
  3029. This document is a summary of information about  Science/School/UNIX software for
  3030. the Amiga.
  3031.  
  3032.  Originally compiled-by: rfarmer@nyx.cs.du.edu (Richard Akerman)
  3033.  Now maintained-by: dak@emx.cc.utexas.edu (Donald A Kassebaum)
  3034.  
  3035.  This FAQ is cross-posted around the middle of each month to
  3036.  comp.sys.amiga.applications, comp.unix.amiga, comp.answers and news.answers
  3037.  
  3038.  also available on   AmiNet   sites:
  3039.  
  3040.       /pub/aminet/text/doc/AmigaSciSchUnix.lha
  3041.  
  3042. The news.answers automatic archiving software will store a copy of  this posting,
  3043. available by anonymous FTP on
  3044.  
  3045.    rtfm.mit.edu [18.20.0.224]
  3046.    /pub/usenet/news.answers/amiga/science-faq
  3047.  
  3048.  Connect your Amiga 
  3049. -----------------------------------
  3050.  
  3051. "Connect your Amiga!"
  3052.  
  3053.  !!!!!!!!!!
  3054.  
  3055.  Second printing is now available!
  3056.  
  3057.  !!!!!!!!!!
  3058.  
  3059. A book by Dale Larson of   IAM  
  3060.  
  3061. ISBN 1-885876-02-5 
  3062.  
  3063. Deals with Amiga networking issues in much greater detail than is possible in this
  3064. FAQ. It explains how to use the software and hardware  to connect to the internet,
  3065. LAN's, BBS's, and commercial services.
  3066.  
  3067.  Aminet 
  3068. -------------------
  3069.  
  3070. Aminet is another archive site with many mirror sites.  In addition to FAQ's you
  3071. can find all kinds of Amiga  programs and files at an Aminet site. They usually
  3072. have a directory called /pub/aminet.  
  3073.  
  3074. See the "All about FTP"   FTP FAQ    for details on using  anonymous  FTP to access
  3075. the archive.
  3076.  
  3077. Here is a list of Aminet sites as of December, 1996.
  3078.  
  3079.  
  3080. Location     Name                      IP Address      Path         Files
  3081.  
  3082. USA (MO)     ftp.wustl.edu             128.252.135.4   pub/aminet/         ALL
  3083. USA (AZ)     ftp.ninemoons.com         165.247.33.6    pub/aminet/         ALL
  3084. USA (WI)     ftp.netnet.net            198.70.64.3     pub/aminet/       25000
  3085. Australia    ftp.livewire.com.au       203.16.26.3     pub/aminet/         ALL
  3086. Switzerland  ftp.eunet.ch              146.228.10.11   pub/aminet/       20000
  3087. Scandinavia  ftp.luth.se               130.240.16.39   pub/aminet/       25000
  3088. Germany      ftp.germany.aminet.org    131.234.22.30   pub/aminet/         ALL
  3089. Germany      ftp.uni-erlangen.de       131.188.3.2     pub/aminet/       20000
  3090. Germany      ftp.uni-stuttgart.de      129.69.18.15    cd aminet          4000
  3091. Germany      ftp.cs.tu-berlin.de       130.149.17.12   pub/aminet/       16000
  3092. Germany      ftp.tu-chemnitz.de        134.109.132.28  pub/aminet/       12000
  3093. Germany      ftp.uni-siegen.de         141.99.164.1    pub/aminet/        9000
  3094. Germany      ftp.uni-trier.de          136.199.8.81    pub/aminet/        5000
  3095. Germany      ftp.fh-augsburg.de        141.82.16.242   pub/aminet/        5000
  3096. Germany      ftp.uni-bremen.de         134.102.228.2   pub/aminet/        3000
  3097. Germany      ftp.uni-kl.de             131.246.94.94   pub/aminet/        2000
  3098. Germany      ftp.uni-regensburg.de     132.199.1.203   pub/aminet/        3000
  3099. Germany      ftp.tu-clausthal.de       139.174.253.13  pub/aminet/        1000
  3100. Germany      ftp.aachen.aminet.org     137.226.225.3   pub/aminet/        2300
  3101. Germany      ftp.rz.uni-wuerzburg.de   132.187.1.2     pub/amiga/aminet/  4000
  3102. Italy        ftp.italy.aminet.org      192.132.34.17   pub/aminet/         ALL
  3103. Austria      vienna.aminet.or.at       193.171.54.210  pub/aminet          ALL
  3104. France       aminet.grolier.fr         194.158.97.86   pub/aminet/         ALL
  3105. France       sunsite.cnam.fr           163.173.129.5   pub/aminet/        6000
  3106. Denmark      sunsite.auc.dk            130.225.51.30   pub/aminet/        2000
  3107. UK           ftp.uk.aminet.org         155.198.1.40    pub/aminet/         ALL
  3108. UK           micros.hensa.ac.uk        194.80.32.51    pub/aminet/        8500
  3109. Ireland      atlantis.ucc.ie           143.239.1.200   pub/aminet/        2000
  3110. Greece       ftp.acropolis.gr          193.92.228.7    pub/aminet        20000
  3111. Portugal     ftp.portugal.aminet.org   193.136.173.10  pub/aminet/       15000
  3112. Spain        ftp.gui.uva.es            157.88.36.190   pub/aminet/        1500
  3113. Hungary      ftp.iit.uni-miskolc.hu    193.6.4.31      pub/aminet/        3000
  3114. Czech Rep    amiga.chemi.muni.cz       147.251.84.2    pub/aminet/        2000
  3115. Poland       ftp.man.szczecin.pl       194.92.39.69    pub/aminet/        2000
  3116. Croatia      thphys.irb.hr             161.53.129.16   pub/aminet/         500
  3117.  
  3118.  
  3119.  
  3120.  
  3121.  
  3122. Please use a mirror site close to you!
  3123.  
  3124. A current list of mirror sites can be obtained from the Aminet readme file. The
  3125. readme file also provides a lot of other very useful information, and is well
  3126. worth reading. It is located in the top level of any Aminet site.
  3127.  
  3128. In addition to Aminet there are other amiga related FTP sites. You can use Archie
  3129. or Veronica to locate sites that have a specific file you are looking for and
  3130. perhaps avoid overcrowding the mirror sites.
  3131.  
  3132.  
  3133. The Aminet Archive now has a Mosaic home page where the most recent uploads can by
  3134. found and retrieved.  You can access it directly or from the Amiga Web Directory
  3135. by CUCUG at http://www.cucug.org/amifiles.html
  3136.  
  3137.  
  3138. If you don't have internet access, you can still get the Aminet collection on CD
  3139. Rom. They are available mail order and from   Cronus  
  3140.  
  3141.  Fred Fish 
  3142. ------------------
  3143.  
  3144. Fred Fish, Cronus, and Amiga Library Services.
  3145.  
  3146. First there was Fred Fish and his floppy based archive of public domain and
  3147. shareware software for the Amiga.
  3148.  
  3149. Fred then began to make the archive available on CD Rom as well and started a
  3150. company called Amiga Library Services which has since changed names to Cronus. I
  3151. think this collection goes up to Fresh Fish vol 10 and Gold Fish vol 3.
  3152.  
  3153.  
  3154. The Fred Fish collection has been and is a valuable asset to the Amiga community.
  3155. Mucho Thanks to Fred and all the contributors.
  3156.  
  3157.  
  3158. With the advent of the internet and world wide web,   Aminet   has taken over the
  3159. role of "library" for public domain and shareware software. Cronus distributes the
  3160. Aminet CD collection.
  3161.  
  3162. Fred is heavily involved in a new venture which in my opinion is long overdue. As
  3163. evidenced by the size of Aminet, the Amiga community is very active in writing
  3164. their own programs and utils. Cronus is now offering a new CD subscrition called
  3165. GEEK GADGETS which is a ready to run collection of Amiga programming tools.
  3166.  
  3167.  
  3168.  
  3169. The Fred Fish, Aminet, Geek Gadgets, and other CD Roms are available from
  3170.  
  3171.  
  3172. !!!!!!!! Note the New Name and Address !!!!!!!!!
  3173.  
  3174.      Cronus
  3175.      1840 East Warner Road #105-265
  3176.      Tempe, AZ 85284
  3177.      U.S.A.
  3178.      Phone: (602)491-0442 or (800) 804-0833
  3179.      FAX: (602) 491-0048
  3180.  
  3181.      Email: orders@ninemoons.com or info@amigalib.com
  3182.  
  3183. !!!!!!!!!!!!!!!!!!!!!
  3184.  
  3185.  announce 
  3186. --------
  3187.  
  3188. comp.sys.amiga.announce --- c.s.a.announce
  3189.  
  3190. is a moderated news group for announcing new or updated Amiga products.
  3191.  
  3192. There is now a web page for the group thanks to the moderator Dan Zerkle. Check
  3193. out:
  3194.  
  3195. http://selab.cs.ucdavis.edu/~zerkle/announce
  3196.  
  3197.  amigazone 
  3198. -----------
  3199.  
  3200. AmigaZone survived the shutdown of Portal, and is now available on Calweb. Harv
  3201. Laser is still the Sysop.
  3202.  
  3203.  
  3204. Although this is a fee based service, I think it is worth mentioning since it is
  3205. Amiga specific. Also they are offering a two week free trial. To learn more about
  3206. Amigazone and the free trial visit the web page at:  http://www.amigazone.com
  3207.  
  3208.  misc 
  3209. -------------
  3210.  
  3211. miscellaneous stuff:
  3212.  
  3213.  
  3214. A domain name and host name can be had for free. Send email to
  3215. info@rs.internic.net
  3216.  
  3217.  
  3218.  
  3219. No longer Free. Domain names are like vanity plates now. You gotta pay a yearly
  3220. fee at least if you want a .com domain.
  3221.  
  3222.  Feedback 
  3223. -------------------
  3224.  
  3225. HELP!
  3226.  
  3227. As you probably noticed the FAQ is rather thin in spots. This is usually due to
  3228. one of two things: my ignorance because I can't use all the products, or because I
  3229. haven't had time to write or keep up. In either case I would greatly appreaciate
  3230. some help.
  3231.  
  3232.  
  3233. Send corrections, updates and suggestions to:
  3234.  
  3235.   norman@afas.msfc.nasa.gov
  3236.  
  3237.   Richard Norman
  3238.   ED36 
  3239.   MSFC, AL 35812  USA
  3240.  
  3241.  
  3242. All submissions will be considered altruistic donations to the network community's
  3243. pool of public knowledge.
  3244.  
  3245. Send flames to yourself for not getting off your behind and writing a better FAQ
  3246. yourself.   Besides I'm still learning too! ;-)
  3247.  
  3248.